Do not close TabBox from window strip on click
This commit is contained in:
parent
ff8c0e3f8f
commit
b770c56eec
1 changed files with 4 additions and 1 deletions
|
@ -82,7 +82,10 @@ Item {
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
MouseArea {
|
MouseArea {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
onClicked: thumbnailListView.model.activate(index)
|
onClicked: {
|
||||||
|
thumbnailListView.currentIndex = index;
|
||||||
|
thumbnailListView.currentIndexChanged(index);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
PlasmaComponents.Label {
|
PlasmaComponents.Label {
|
||||||
|
|
Loading…
Reference in a new issue