mirror of
https://github.com/noctalia-dev/noctalia-shell.git
synced 2026-05-11 17:08:27 +08:00
fix(panel): when animations are disabled to log a warning on every panel open
This commit is contained in:
@@ -1327,9 +1327,11 @@ Item {
|
||||
opacityTrigger.start();
|
||||
}
|
||||
|
||||
// Start open watchdog timer
|
||||
root.openWatchdogActive = true;
|
||||
openWatchdogTimer.start();
|
||||
// Start open watchdog timer (skip when animations disabled - everything completes synchronously)
|
||||
if (!root.animationsDisabled) {
|
||||
root.openWatchdogActive = true;
|
||||
openWatchdogTimer.start();
|
||||
}
|
||||
|
||||
opened();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user