bug fix on file transfer window

This commit is contained in:
open-trade 2022-01-21 15:13:29 +08:00
parent b0ddd3d543
commit 372b715162
2 changed files with 0 additions and 3 deletions

View File

@ -82,10 +82,8 @@ class Grid: Behavior {
{ {
if (prev === col) return; // already here, nothing to do. if (prev === col) return; // already here, nothing to do.
prev.state.current = false; // drop state flag prev.state.current = false; // drop state flag
prev.state.current = false; // drop state flag
} }
col.state.current = true; // set state flag col.state.current = true; // set state flag
row.state.checked = true;
col.scrollToView(); col.scrollToView();
this.onHeaderClick(col); this.onHeaderClick(col);
} }

View File

@ -1705,7 +1705,6 @@ impl Remote {
self.handler self.handler
.call("setPermission", &make_args!("audio", p.enabled)); .call("setPermission", &make_args!("audio", p.enabled));
} }
_ => {}
} }
} }
Some(misc::Union::switch_display(s)) => { Some(misc::Union::switch_display(s)) => {