Skip to content

Commit 375afaa

Browse files
bbedwarddms-ci[bot]
authored andcommitted
widgets: fix dropdown/icon picker referencing a dead window
port 1.5 (cherry picked from commit 5212345)
1 parent fe0214d commit 375afaa

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

quickshell/Modals/Clipboard/ClipboardEditor.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ Item {
397397

398398
Popup {
399399
id: saveMenu
400-
parent: Overlay.overlay
400+
parent: root.Overlay.overlay
401401
padding: Theme.spacingM
402402
modal: true
403403
dim: false

quickshell/Modals/DankLauncherV2/SectionHeader.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ Rectangle {
147147

148148
Popup {
149149
id: categoryPopup
150-
parent: Overlay.overlay
150+
parent: categoryChip.Overlay.overlay
151151
width: Math.max(categoryChip.width, 180)
152152
padding: 0
153153
modal: true

quickshell/Widgets/DankDropdown.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ Item {
305305

306306
onClosed: root.menuOpen = false
307307

308-
parent: Overlay.overlay
308+
parent: root.Overlay.overlay
309309
width: root.popupWidth === -1 ? undefined : (root.popupWidth > 0 ? root.popupWidth : (dropdown.width + root.popupWidthOffset))
310310
height: {
311311
let h = root.enableFuzzySearch ? 54 : 0;

quickshell/Widgets/DankIconPicker.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Rectangle {
118118
Popup {
119119
id: iconPopup
120120

121-
parent: Overlay.overlay
121+
parent: root.Overlay.overlay
122122
width: 320
123123
height: Math.min(500, dropdownContent.implicitHeight + 32)
124124
padding: 0

0 commit comments

Comments
 (0)