Prevent even more dragging when popup are open.

This commit is contained in:
ItsLemmy
2025-09-22 13:46:25 -04:00
parent c20773d60b
commit be1c975f4d
3 changed files with 21 additions and 0 deletions
+8
View File
@@ -89,6 +89,14 @@ RowLayout {
implicitHeight: Math.min(root.popupHeight, contentItem.implicitHeight + Style.marginM * scaling * 2)
padding: Style.marginM * scaling
onOpened: {
PanelService.willOpenPopup(root)
}
onClosed: {
PanelService.willClosePopup(root)
}
contentItem: ListView {
property var comboBoxRoot: root
clip: true