summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gui/qml/main.qml8
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") }
}
]
}