mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-06-09 05:05:27 +00:00
respect the global disable animation option
This commit is contained in:
+3
-2
@@ -26,8 +26,9 @@ Variants {
|
||||
property bool peekHovered: false
|
||||
// Controls PanelWindow visibility while auto-hide is enabled
|
||||
property bool barWindowVisible: !autoHide
|
||||
readonly property int hideDelay: 500
|
||||
readonly property int showDelay: 120
|
||||
// Respect global animation toggle: no delays when animations are disabled
|
||||
readonly property int hideDelay: Settings.data.general.animationDisabled ? 0 : 500
|
||||
readonly property int showDelay: Settings.data.general.animationDisabled ? 0 : 120
|
||||
readonly property int hideAnimationDuration: Style.animationNormal
|
||||
readonly property int showAnimationDuration: Style.animationNormal
|
||||
|
||||
|
||||
Reference in New Issue
Block a user