diff options
author | kali kaneko (leap communications) <kali@leap.se> | 2020-06-04 13:32:42 +0200 |
---|---|---|
committer | kali kaneko (leap communications) <kali@leap.se> | 2020-06-12 20:02:52 +0200 |
commit | e66d469c3cdc72b6c0adb274ae39028301168369 (patch) | |
tree | b7e011c8da50d9d90a334cad0d5fd650124c363a /gui | |
parent | 5b0f50abe5718d83cdc62623faad854f810df640 (diff) |
[bug] fix function call
Signed-off-by: kali kaneko (leap communications) <kali@leap.se>
Diffstat (limited to 'gui')
-rw-r--r-- | gui/qml/main.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gui/qml/main.qml b/gui/qml/main.qml index 38f5331..b601f40 100644 --- a/gui/qml/main.qml +++ b/gui/qml/main.qml @@ -92,13 +92,13 @@ ApplicationWindow { }, State { name: "stopping" - PropertyChanges { target: systray; tooltip: toHuman["stopping"]; icon.source: icons["wait"] } - PropertyChanges { target: statusItem; text: toHuman["stopping"] } + PropertyChanges { target: systray; tooltip: toHuman("stopping"); icon.source: icons["wait"] } + PropertyChanges { target: statusItem; text: toHuman("stopping") } }, State { name: "failed" - PropertyChanges { target: systray; tooltip: toHuman["failed"]; icon.source: icons["wait"] } - PropertyChanges { target: statusItem; text: toHuman["failed"] } + PropertyChanges { target: systray; tooltip: toHuman("failed"); icon.source: icons["wait"] } + PropertyChanges { target: statusItem; text: toHuman("failed") } } ] } |