diff options
author | Ruben Pollan <meskio@sindominio.net> | 2020-10-02 12:34:26 +0200 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2020-10-02 12:34:26 +0200 |
commit | f798e3f30b6eb69b3655159f07a27571fb737e2b (patch) | |
tree | 5f671c56cdbfebf69268e1c8e879fc4a48f5fa3d /gui/qml/main.qml | |
parent | 2079772a55e593b75b64d7eb18738dfbaa64dfda (diff) |
[ui] Display the proper icon for failed state
Diffstat (limited to 'gui/qml/main.qml')
-rw-r--r-- | gui/qml/main.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/qml/main.qml b/gui/qml/main.qml index 367debe..80f8e7c 100644 --- a/gui/qml/main.qml +++ b/gui/qml/main.qml @@ -205,7 +205,7 @@ ApplicationWindow { }, State { name: "failed" - PropertyChanges { target: systray; tooltip: toHuman("failed"); icon.source: icons["wait"] } + PropertyChanges { target: systray; tooltip: toHuman("failed"); icon.source: icons["blocked"] } PropertyChanges { target: statusItem; text: toHuman("failed") } } ] |