[effects] Fix QML after recent refactor

fd25e96969 looks like it attempted to
rename an alias and got out of sync.
This commit is contained in:
David Edmundson 2022-06-22 19:59:22 +01:00
parent 0534110eed
commit be5b23628f
2 changed files with 2 additions and 2 deletions

View file

@ -184,7 +184,7 @@ FocusScope {
id: heap id: heap
visible: !(container.organized && searchField.text) visible: !(container.organized && searchField.text)
anchors.fill: parent anchors.fill: parent
layoutMode: effect.layout layout: effect.layout
padding: PlasmaCore.Units.largeSpacing padding: PlasmaCore.Units.largeSpacing
animationDuration: effect.animationDuration animationDuration: effect.animationDuration
animationEnabled: container.animationEnabled animationEnabled: container.animationEnabled

View file

@ -119,7 +119,7 @@ Item {
animationEnabled: container.animationEnabled animationEnabled: container.animationEnabled
organized: container.organized organized: container.organized
showOnly: container.effect.mode === WindowView.ModeWindowClass ? "activeClass" : selectedIds showOnly: container.effect.mode === WindowView.ModeWindowClass ? "activeClass" : selectedIds
layoutMode: effect.layout layout: effect.layout
onWindowClicked: { onWindowClicked: {
if (eventPoint.event.button !== Qt.MiddleButton) { if (eventPoint.event.button !== Qt.MiddleButton) {
return; return;