diff --git a/lookandfeel/contents/windowswitcher/WindowSwitcher.qml b/lookandfeel/contents/windowswitcher/WindowSwitcher.qml --- a/lookandfeel/contents/windowswitcher/WindowSwitcher.qml +++ b/lookandfeel/contents/windowswitcher/WindowSwitcher.qml @@ -71,7 +71,13 @@ width: thumbnailListView.width height: delegateColumn.implicitHeight + 2 * delegateColumn.y - onClicked: thumbnailListView.currentIndex = index + onClicked: { + if (tabBox.noModifierGrab) { + tabBox.model.activate(index); + } else { + thumbnailListView.currentIndex = index; + } + } ColumnLayout { id: delegateColumn