switch sides: use ipc to pass msg from ui to server

Signed-off-by: 21pages <pages21@163.com>
This commit is contained in:
21pages
2023-01-17 20:16:36 +08:00
parent 81a60725f4
commit e57949d472
4 changed files with 46 additions and 15 deletions

View File

@@ -248,7 +248,7 @@ pub fn get_clients_length() -> usize {
#[cfg(feature = "flutter")]
pub fn switch_back(id: i32) {
if let Some(client) = CLIENTS.read().unwrap().get(&id) {
allow_err!(client.tx.send(Data::SwitchBack));
allow_err!(client.tx.send(Data::SwitchSidesBack));
};
}