diff --git a/src/effects/overview/qml/DesktopBar.qml b/src/effects/overview/qml/DesktopBar.qml index 1be36ccfb1..e8b1df7ba4 100644 --- a/src/effects/overview/qml/DesktopBar.qml +++ b/src/effects/overview/qml/DesktopBar.qml @@ -90,13 +90,6 @@ Item { width: bar.desktopWidth height: bar.desktopHeight - Rectangle { - id: mask - anchors.fill: parent - radius: 3 - visible: false - } - DesktopView { id: thumbnail @@ -148,7 +141,11 @@ Item { anchors.fill: parent cached: true source: thumbnail - maskSource: mask + maskSource: Rectangle { + width: bar.desktopWidth + height: bar.desktopHeight + radius: 3 + } } Rectangle {