1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-07 05:55:37 -05:00

fix nil error

This commit is contained in:
bbedward
2025-08-05 15:42:16 -04:00
parent 283673a314
commit 55bb63f2a5

View File

@@ -540,7 +540,9 @@ PanelWindow {
systemTrayContextMenu.contextMenuX = rightSection.x + rightSection.width - 400 - Theme.spacingL;
systemTrayContextMenu.contextMenuY = Theme.barHeight - Theme.spacingXS;
systemTrayContextMenu.showContextMenu = true;
menu.menuVisible = true;
if (menu) {
menu.menuVisible = true;
}
}
}