No need to track open popups anymore. Avoid widgets to include services directly

This commit is contained in:
ItsLemmy
2025-11-08 22:37:19 -05:00
parent 373398236a
commit 8b7ec73fdf
10 changed files with 1 additions and 73 deletions
@@ -25,19 +25,12 @@ Popup {
anchors.centerIn: parent
onOpened: {
// Mark this popup has opened in the PanelService
PanelService.willOpenPopup(root)
// Load settings when popup opens with data
if (widgetData && widgetId) {
loadWidgetSettings()
}
}
onClosed: {
PanelService.willClosePopup(root)
}
background: Rectangle {
id: bgRect