We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb20b1b commit 494d4bfCopy full SHA for 494d4bf
app/src/cc/arduino/view/SplashScreenHelper.java
@@ -61,13 +61,13 @@ public SplashScreenHelper(SplashScreen splash) {
61
if (splash != null) {
62
Toolkit tk = Toolkit.getDefaultToolkit();
63
desktopHints = (Map) tk.getDesktopProperty("awt.font.desktophints");
64
+ File image = UpdateCheck.getUpdatedSplashImageFile();
65
+ if (image != null) {
66
+ splashImage(image);
67
+ }
68
} else {
69
desktopHints = null;
70
}
- File image = UpdateCheck.getUpdatedSplashImageFile();
- if (image != null) {
- splashImage(image);
- }
71
72
73
public void splashText(String text) {
0 commit comments