fix chat window focus problem and update version number https://github.com/rustdesk/rustdesk/issues/443

This commit is contained in:
rustdesk 2022-04-20 20:44:48 +08:00
parent d858790170
commit ccffa14450
3 changed files with 9 additions and 5 deletions

2
Cargo.lock generated
View File

@ -3383,7 +3383,7 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
[[package]]
name = "rustdesk"
version = "1.1.8"
version = "1.1.9"
dependencies = [
"android_logger",
"arboard",

View File

@ -1,8 +1,8 @@
[package]
name = "rustdesk"
version = "1.1.8"
version = "1.1.9"
authors = ["rustdesk <info@rustdesk.com>"]
edition = "2018"
edition = "2021"
build= "build.rs"
description = "A remote control software."

View File

@ -15,13 +15,17 @@
$(body).content(<ChatBox msgs={p.msgs} callback={p.callback} />);
view.focus = $(input);
}
view.refresh();
function self.closing() {
view.windowState = View.WINDOW_HIDDEN;
return false;
}
view.windowIcon = self.url(p.icon);
function self.ready() {
view.windowTopmost = true;
view.refresh();
view.windowTopmost = false;
}
</script>
</head>
<body></body>
</html>
</html>