Skip to content
Snippets Groups Projects
Unverified Commit e66d469c authored by Kali Kaneko's avatar Kali Kaneko
Browse files

[bug] fix function call

parent 5b0f50ab
No related branches found
No related tags found
No related merge requests found
...@@ -92,13 +92,13 @@ ApplicationWindow { ...@@ -92,13 +92,13 @@ ApplicationWindow {
}, },
State { State {
name: "stopping" name: "stopping"
PropertyChanges { target: systray; tooltip: toHuman["stopping"]; icon.source: icons["wait"] } PropertyChanges { target: systray; tooltip: toHuman("stopping"); icon.source: icons["wait"] }
PropertyChanges { target: statusItem; text: toHuman["stopping"] } PropertyChanges { target: statusItem; text: toHuman("stopping") }
}, },
State { State {
name: "failed" name: "failed"
PropertyChanges { target: systray; tooltip: toHuman["failed"]; icon.source: icons["wait"] } PropertyChanges { target: systray; tooltip: toHuman("failed"); icon.source: icons["wait"] }
PropertyChanges { target: statusItem; text: toHuman["failed"] } PropertyChanges { target: statusItem; text: toHuman("failed") }
} }
] ]
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment