diff --git a/components/mobileshell/qml/widgets/krunner/KRunnerWidget.qml b/components/mobileshell/qml/widgets/krunner/KRunnerWidget.qml index f51303959d5e22d22663ab1e1d8c6222ed65a1c6..43f925c3e89df946a2ee03956bf5b4306d8ec9fb 100644 --- a/components/mobileshell/qml/widgets/krunner/KRunnerWidget.qml +++ b/components/mobileshell/qml/widgets/krunner/KRunnerWidget.qml @@ -177,7 +177,6 @@ Item { NumberAnimation { duration: PlasmaCore.Units.shortDuration } } - Layout.fillHeight: true Layout.fillWidth: true Milou.ResultsListView { @@ -207,8 +206,8 @@ Item { Rectangle { anchors.fill: parent color: delegate.pressed ? Qt.rgba(255, 255, 255, 0.2) : (delegate.containsMouse ? Qt.rgba(255, 255, 255, 0.05) : "transparent") - Behavior on color { - ColorAnimation { duration: PlasmaCore.Units.shortDuration } + Behavior on color { + ColorAnimation { duration: PlasmaCore.Units.shortDuration } } } @@ -283,6 +282,13 @@ Item { } } } + + MouseArea { + Layout.fillWidth: true + Layout.fillHeight: true + + onClicked: close() + } } } }