diff options
Diffstat (limited to 'gui/qml/main.qml')
-rw-r--r-- | gui/qml/main.qml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gui/qml/main.qml b/gui/qml/main.qml index 91e3b4e..e0a9a81 100644 --- a/gui/qml/main.qml +++ b/gui/qml/main.qml @@ -276,9 +276,10 @@ ApplicationWindow { loginDone = false allowEmptyPass = Logic.shouldAllowEmptyPass(providers) needsRestart = false; - /* TODO get appVisible flag from backend */ - //app.visible = true - //app.raise() + if (!systrayAvailable) { + app.visible = true + app.raise() + } } |