From b770c56eecdee9b5a5f84a3beaf4a3738c039baa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Fri, 2 Dec 2011 10:48:22 +0100 Subject: [PATCH] Do not close TabBox from window strip on click --- tabbox/qml/window_strip.qml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tabbox/qml/window_strip.qml b/tabbox/qml/window_strip.qml index 801bc61158..b63a138b90 100644 --- a/tabbox/qml/window_strip.qml +++ b/tabbox/qml/window_strip.qml @@ -82,7 +82,10 @@ Item { anchors.centerIn: parent MouseArea { anchors.fill: parent - onClicked: thumbnailListView.model.activate(index) + onClicked: { + thumbnailListView.currentIndex = index; + thumbnailListView.currentIndexChanged(index); + } } } PlasmaComponents.Label {