fix(launcher): skip delay when animations disabled

This commit is contained in:
Eric Handley
2026-03-02 16:27:04 -08:00
parent 54f9274c85
commit 579f5585a9
2 changed files with 8 additions and 2 deletions
+7 -1
View File
@@ -1312,7 +1312,13 @@ Item {
// Make panel visible, now only the intended dimension will animate
root.isPanelVisible = true;
opacityTrigger.start();
if (Style.animationNormal === 0) {
// Skip delay when animations are disabled
root.sizeAnimationComplete = true;
} else {
opacityTrigger.start();
}
// Start open watchdog timer
root.openWatchdogActive = true;