From 8e8105d04d37adf855ac88174c0ba8719d315ece Mon Sep 17 00:00:00 2001 From: James Graham Date: Tue, 16 Jan 2024 20:08:53 +0000 Subject: [PATCH] Clip QuickSwitcher Clip QuickSwitcher to stop the delegates overlapping the dialog --- src/qml/QuickSwitcher.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/qml/QuickSwitcher.qml b/src/qml/QuickSwitcher.qml index ff52440cf..e372a9293 100644 --- a/src/qml/QuickSwitcher.qml +++ b/src/qml/QuickSwitcher.qml @@ -21,7 +21,7 @@ QQC2.Dialog { leftPadding: 0 rightPadding: 0 - bottomPadding: 0 + bottomPadding: 1 topPadding: 0 anchors.centerIn: applicationWindow().overlay @@ -71,6 +71,7 @@ QQC2.Dialog { QQC2.ScrollView { anchors.fill: parent + clip: true Keys.forwardTo: searchField