diff --git a/applets/kicker/package/contents/ui/DashboardRepresentation.qml b/applets/kicker/package/contents/ui/DashboardRepresentation.qml index 777ab3312ada81146d8a29191865884e62b3e95c..520e47fab5e18decd8dac61131c6dcc189b10e59 100644 --- a/applets/kicker/package/contents/ui/DashboardRepresentation.qml +++ b/applets/kicker/package/contents/ui/DashboardRepresentation.qml @@ -569,7 +569,7 @@ Kicker.DashboardWindow { anchors.fill: parent z: (opacity == 1.0) ? 1 : 0 - enabled: (opacity == 1.0) ? 1 : 0 + visible: opacity != 0.0 property int headerHeight: mainColumnLabel.height + mainColumnLabelUnderline.height + PlasmaCore.Units.largeSpacing @@ -690,7 +690,7 @@ Kicker.DashboardWindow { width: parent.width height: systemFavoritesGrid.y + systemFavoritesGrid.height - enabled: (opacity == 1.0) ? 1 : 0 + visible: opacity != 0.0 opacity: filterList.allApps ? 1.0 : 0.0 @@ -731,7 +731,7 @@ Kicker.DashboardWindow { width: parent.width height: Math.min(implicitHeight, systemFavoritesGrid.y + systemFavoritesGrid.height) - enabled: (opacity == 1.0) ? 1 : 0 + visible: opacity != 0.0 model: runnerModel