Fix Sidepanel closing

This commit is contained in:
ly-sec 2025-07-12 15:16:10 +02:00
parent aad16d7ea7
commit a749ea7096
2 changed files with 16 additions and 7 deletions

View file

@ -26,8 +26,14 @@ Item {
if (sidebarPopup.settingsModal && sidebarPopup.settingsModal.visible) {
sidebarPopup.settingsModal.visible = false;
}
if (sidebarPopup.wallpaperManagerModal && sidebarPopup.wallpaperManagerModal.visible) {
sidebarPopup.wallpaperManagerModal.visible = false;
if (sidebarPopup.wallpaperPanelModal && sidebarPopup.wallpaperPanelModal.visible) {
sidebarPopup.wallpaperPanelModal.visible = false;
}
if (sidebarPopup.wifiPanelModal && sidebarPopup.wifiPanelModal.visible) {
sidebarPopup.wifiPanelModal.visible = false;
}
if (sidebarPopup.bluetoothPanelModal && sidebarPopup.bluetoothPanelModal.visible) {
sidebarPopup.bluetoothPanelModal.visible = false;
}
sidebarPopup.hidePopup();
} else {

View file

@ -22,7 +22,7 @@ PanelWindow {
// Animation properties
property real slideOffset: width
property bool isAnimating: false
function showAt() {
if (!visible) {
visible = true;
@ -90,6 +90,9 @@ PanelWindow {
}
property alias settingsModal: settingsModal
property alias wallpaperPanelModal: wallpaperPanelModal
property alias wifiPanelModal: wifiPanel.panel
property alias bluetoothPanelModal: bluetoothPanel.panel
SettingsModal {
id: settingsModal
}
@ -193,7 +196,7 @@ PanelWindow {
anchors.fill: parent
hoverEnabled: true
cursorShape: Qt.PointingHandCursor
onClicked: wifiPanelModal.showAt()
onClicked: wifiPanel.showAt()
}
}
@ -223,7 +226,7 @@ PanelWindow {
anchors.fill: parent
hoverEnabled: true
cursorShape: Qt.PointingHandCursor
onClicked: bluetoothPanelModal.showAt()
onClicked: bluetoothPanel.showAt()
}
}
}
@ -232,11 +235,11 @@ PanelWindow {
// Hidden panel components for modal functionality
WifiPanel {
id: wifiPanelModal
id: wifiPanel
visible: false
}
BluetoothPanel {
id: bluetoothPanelModal
id: bluetoothPanel
visible: false
}