[Tab switcher] Fix binding loop that spams the log

BUG: 410984
FIXED-IN: 5.21
wilder-5.22
Nate Graham 5 years ago
parent 5abed2ddbf
commit bafd2ad7c4
  1. 4
      lookandfeel/contents/windowswitcher/WindowSwitcher.qml

@ -69,7 +69,7 @@ KWin.Switcher {
delegate: MouseArea {
width: thumbnailListView.width
height: delegateColumn.implicitHeight + 2 * delegateColumn.y
height: delegateColumn.height + 2 * delegateColumn.y
onClicked: {
if (tabBox.noModifierGrab) {
@ -93,7 +93,7 @@ KWin.Switcher {
Item {
Layout.fillWidth: true
Layout.preferredHeight: Math.round(width / tabBox.screenFactor)
implicitHeight: Math.round(delegateColumn.width / tabBox.screenFactor)
KWin.ThumbnailItem {
anchors.fill: parent

Loading…
Cancel
Save