kick start international keyboard

This commit is contained in:
open-trade 2022-01-07 13:59:21 +08:00
parent 1931cb8c7c
commit e82f040d6d
3 changed files with 12 additions and 1 deletions

10
Cargo.lock generated
View File

@ -3091,6 +3091,7 @@ dependencies = [
"sha2",
"sys-locale",
"systray",
"tigervnc",
"uuid",
"whoami",
"winapi 0.3.9",
@ -3603,6 +3604,15 @@ dependencies = [
"weezl",
]
[[package]]
name = "tigervnc"
version = "1.0.0"
source = "git+https://github.com/open-trade/tigervnc#2007dbb0f47ac72069a529182ce73c954ab70d38"
dependencies = [
"cc",
"cfg-if 1.0.0",
]
[[package]]
name = "time"
version = "0.3.5"

View File

@ -54,6 +54,7 @@ sciter-rs = { git = "https://github.com/open-trade/rust-sciter", branch = "dyn"
ctrlc = "3.2"
arboard = "2.0"
clipboard-master = "3.1"
tigervnc = { git = "https://github.com/open-trade/tigervnc" }
[target.'cfg(target_os = "windows")'.dependencies]
systray = { git = "https://github.com/liyue201/systray-rs" }

View File

@ -95,7 +95,7 @@ class SessionList: Reactor.Component {
function render() {
var sessions = this.getSessions();
if (sessions.length == 0) {
return <div style="margin: *"><div style="margin: *; font-size: 1.6em;">{translate("Empty")}</div></div>;
return <div style="margin: *; font-size: 1.6em;">{translate("Empty")}</div>;
}
var me = this;
sessions = sessions.map(function(x) { return me.getSession(x); });