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 {
},
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") }
}
]
}
......
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