Do not close TabBox from window strip on click

This commit is contained in:
Martin Gräßlin 2011-12-02 10:48:22 +01:00
parent ff8c0e3f8f
commit b770c56eec

View file

@ -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 {