fix(panel): when animations are disabled to log a warning on every panel open

This commit is contained in:
Lemmy
2026-03-19 20:58:14 -04:00
parent 53c4b2dc26
commit 6c57717595
+5 -3
View File
@@ -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();
});