summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2018-07-03 12:20:49 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2018-07-03 12:20:49 +0200
commit5af3030e7ce086a26372dfc1c1b9bba69c85491b (patch)
treed4bf13fe2ce865631e7fe961cf44cc23387ff4c8
parent2ac5e1dc357bdf388e107511042428570767e3d7 (diff)
downloadkube-5af3030e7ce086a26372dfc1c1b9bba69c85491b.tar.gz
kube-5af3030e7ce086a26372dfc1c1b9bba69c85491b.zip
visible doesn't work as we'd like
-rw-r--r--views/log/qml/View.qml4
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 @@
20import QtQuick 2.4 20import QtQuick 2.4
21import QtQuick.Layouts 1.1 21import QtQuick.Layouts 1.1
22import QtQuick.Controls 1.3 as Controls1 22import QtQuick.Controls 1.3 as Controls1
23import QtQuick.Controls 2.0 as Controls2 23import QtQuick.Controls 2.2 as Controls2
24import org.kube.framework 1.0 as Kube 24import org.kube.framework 1.0 as Kube
25 25
26Controls1.SplitView { 26Controls1.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 }