diff options
author | Christian Mollekopf <mollekopf@kolabsystems.com> | 2017-10-23 17:57:22 +0200 |
---|---|---|
committer | Christian Mollekopf <mollekopf@kolabsystems.com> | 2017-10-23 17:58:43 +0200 |
commit | 005cf1cc08e10ec0f7da057964a56cd889629f2f (patch) | |
tree | 3b7fffc338872ffff9cb0f07e895541baabb731d | |
parent | b2d0193f017a9a8a39838eff8afdfc3d30824a84 (diff) | |
download | kube-005cf1cc08e10ec0f7da057964a56cd889629f2f.tar.gz kube-005cf1cc08e10ec0f7da057964a56cd889629f2f.zip |
Always select the latest notification
-rw-r--r-- | components/kube/contents/ui/LogView.qml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/components/kube/contents/ui/LogView.qml b/components/kube/contents/ui/LogView.qml index c1cc36fd..4475e318 100644 --- a/components/kube/contents/ui/LogView.qml +++ b/components/kube/contents/ui/LogView.qml | |||
@@ -29,7 +29,9 @@ Controls.SplitView { | |||
29 | property bool pendingError: false; | 29 | property bool pendingError: false; |
30 | 30 | ||
31 | Controls2.StackView.onActivated: { | 31 | Controls2.StackView.onActivated: { |
32 | pendingError = false; | 32 | root.pendingError = false; |
33 | //Always select the latest notification | ||
34 | listView.currentIndex = 0 | ||
33 | } | 35 | } |
34 | 36 | ||
35 | Item { | 37 | Item { |