From 3909ce3350606b33b25be4174b7ee962736be20d Mon Sep 17 00:00:00 2001 From: bbedward Date: Wed, 8 Oct 2025 15:23:09 -0400 Subject: [PATCH] Remove minimum menu size constraint --- Modals/Spotlight/SpotlightContextMenu.qml | 2 +- Modules/AppDrawer/AppDrawerPopout.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Modals/Spotlight/SpotlightContextMenu.qml b/Modals/Spotlight/SpotlightContextMenu.qml index b41cc717..e8b26cd0 100644 --- a/Modals/Spotlight/SpotlightContextMenu.qml +++ b/Modals/Spotlight/SpotlightContextMenu.qml @@ -24,7 +24,7 @@ Popup { contextMenu.close() } - width: Math.max(180, Math.min(300, menuColumn.implicitWidth + Theme.spacingS * 2)) + width: Math.max(180, menuColumn.implicitWidth + Theme.spacingS * 2) height: menuColumn.implicitHeight + Theme.spacingS * 2 padding: 0 closePolicy: Popup.CloseOnPressOutside diff --git a/Modules/AppDrawer/AppDrawerPopout.qml b/Modules/AppDrawer/AppDrawerPopout.qml index b35d5f91..684294a4 100644 --- a/Modules/AppDrawer/AppDrawerPopout.qml +++ b/Modules/AppDrawer/AppDrawerPopout.qml @@ -684,7 +684,7 @@ DankPopout { contextMenu.close() } - width: 180 + width: Math.max(180, menuColumn.implicitWidth + Theme.spacingS * 2) height: menuColumn.implicitHeight + Theme.spacingS * 2 padding: 0 closePolicy: Popup.CloseOnPressOutside