mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-01-29 07:52:50 -05:00
Fix overview auto hide bar
This commit is contained in:
@@ -315,9 +315,10 @@ Item {
|
|||||||
bottom: barWindow.isVertical ? parent.bottom : undefined
|
bottom: barWindow.isVertical ? parent.bottom : undefined
|
||||||
}
|
}
|
||||||
// Only enable mouse handling while hidden (for reveal-on-edge logic).
|
// Only enable mouse handling while hidden (for reveal-on-edge logic).
|
||||||
hoverEnabled: SettingsData.dankBarAutoHide && !topBarCore.reveal
|
readonly property bool inOverview: CompositorService.isNiri && NiriService.inOverview && SettingsData.dankBarOpenOnOverview
|
||||||
|
hoverEnabled: SettingsData.dankBarAutoHide && !topBarCore.reveal && !inOverview
|
||||||
acceptedButtons: Qt.NoButton
|
acceptedButtons: Qt.NoButton
|
||||||
enabled: SettingsData.dankBarAutoHide && !topBarCore.reveal
|
enabled: SettingsData.dankBarAutoHide && !topBarCore.reveal && !inOverview
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
id: topBarContainer
|
id: topBarContainer
|
||||||
|
|||||||
Reference in New Issue
Block a user