MainScreen: Only dim & mask if panel is opened on 'this' screen.

This commit is contained in:
ItsLemmy
2025-11-07 19:32:10 -05:00
parent 48ff3314cc
commit fa61925982
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -78,7 +78,7 @@ PanelWindow {
// Desktop dimming when panels are open
property bool dimDesktop: Settings.data.general.dimDesktop
property bool isPanelOpen: PanelService.openedPanel !== null
property bool isPanelOpen: (PanelService.openedPanel !== null) && (PanelService.openedPanel.screen === screen)
color: {
if (dimDesktop && isPanelOpen) {
return Qt.alpha(Color.mShadow, 0.8)