Remote Play dialog: replace radio buttons with select box

This commit is contained in:
redphx
2024-09-24 19:47:55 +07:00
parent 135193813c
commit f704452171
2 changed files with 23 additions and 32 deletions

View File

@@ -164,6 +164,10 @@ export class BxSelectElement {
Object.defineProperty($div, 'value', {
get() {
return $select.value;
},
set(value) {
($div as any).setValue(value);
}
});