diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-07-03 12:20:49 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-07-03 12:20:49 +0200 |
commit | 5af3030e7ce086a26372dfc1c1b9bba69c85491b (patch) | |
tree | d4bf13fe2ce865631e7fe961cf44cc23387ff4c8 /views/log/qml/View.qml | |
parent | 2ac5e1dc357bdf388e107511042428570767e3d7 (diff) | |
download | kube-5af3030e7ce086a26372dfc1c1b9bba69c85491b.tar.gz kube-5af3030e7ce086a26372dfc1c1b9bba69c85491b.zip |
visible doesn't work as we'd like
Diffstat (limited to 'views/log/qml/View.qml')
-rw-r--r-- | views/log/qml/View.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/log/qml/View.qml b/views/log/qml/View.qml index 5c4cabee..30b87bcc 100644 --- a/views/log/qml/View.qml +++ b/views/log/qml/View.qml | |||
@@ -20,7 +20,7 @@ | |||
20 | import QtQuick 2.4 | 20 | import QtQuick 2.4 |
21 | import QtQuick.Layouts 1.1 | 21 | import QtQuick.Layouts 1.1 |
22 | import QtQuick.Controls 1.3 as Controls1 | 22 | import QtQuick.Controls 1.3 as Controls1 |
23 | import QtQuick.Controls 2.0 as Controls2 | 23 | import QtQuick.Controls 2.2 as Controls2 |
24 | import org.kube.framework 1.0 as Kube | 24 | import org.kube.framework 1.0 as Kube |
25 | 25 | ||
26 | Controls1.SplitView { | 26 | Controls1.SplitView { |
@@ -55,7 +55,7 @@ Controls1.SplitView { | |||
55 | return | 55 | return |
56 | } | 56 | } |
57 | //Avoid highlighting the iconbutton again if we're already looking at this view. | 57 | //Avoid highlighting the iconbutton again if we're already looking at this view. |
58 | if (!Controls2.StackView.visible) { | 58 | if (root.Controls2.StackView.status != Controls2.StackView.Active) { |
59 | if (message.type == Kube.Notifications.error) { | 59 | if (message.type == Kube.Notifications.error) { |
60 | root.pendingError = true | 60 | root.pendingError = true |
61 | } | 61 | } |