From 5312a6b56e787a718edb3ccfe8a2560bf040212b Mon Sep 17 00:00:00 2001 From: IfGuestInDream Date: Sat, 10 May 2025 14:51:31 +0800 Subject: [PATCH] =?UTF-8?q?fix(qe):=20=E4=BF=AE=E5=A4=8DSkipBootAnimation?= =?UTF-8?q?=20=E5=88=9D=E5=A7=8B=E5=80=BC=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Close #2137 Signed-off-by: IfGuestInDream --- qe/src/main/java/com/tlcsdm/qe/provider/QeSplashProvider.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qe/src/main/java/com/tlcsdm/qe/provider/QeSplashProvider.java b/qe/src/main/java/com/tlcsdm/qe/provider/QeSplashProvider.java index 595b008d0..1ba697a37 100644 --- a/qe/src/main/java/com/tlcsdm/qe/provider/QeSplashProvider.java +++ b/qe/src/main/java/com/tlcsdm/qe/provider/QeSplashProvider.java @@ -105,7 +105,7 @@ public Parent getParent() { SequentialTransition animation = new SequentialTransition(fadeTransition, pathTransition, scaleTransition); animation.setInterpolator(Interpolator.EASE_IN); animation.setOnFinished(event -> EventBus.getDefault().post(new SplashAnimFinishedEvent())); - if (Config.getBoolean(Keys.SkipBootAnimation, true)) { + if (Config.getBoolean(Keys.SkipBootAnimation, false)) { animation.setRate(10); } animation.play();