Skip to content

Commit e0759dd

Browse files
fix(qe): 修复SkipBootAnimation 初始值异常 (#2139)
1 parent 82c4a11 commit e0759dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qe/src/main/java/com/tlcsdm/qe/provider/QeSplashProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public Parent getParent() {
105105
SequentialTransition animation = new SequentialTransition(fadeTransition, pathTransition, scaleTransition);
106106
animation.setInterpolator(Interpolator.EASE_IN);
107107
animation.setOnFinished(event -> EventBus.getDefault().post(new SplashAnimFinishedEvent()));
108-
if (Config.getBoolean(Keys.SkipBootAnimation, true)) {
108+
if (Config.getBoolean(Keys.SkipBootAnimation, false)) {
109109
animation.setRate(10);
110110
}
111111
animation.play();

0 commit comments

Comments
 (0)