Skip to content

Commit

Permalink
Update splash window when actually launching
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrueden committed Oct 21, 2024
1 parent 27e5ae2 commit 4f4fd13
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/org/scijava/launcher/ClassLauncher.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ public static String appName(String fallback) {
public static void main(final String... args) {
tryToRun(Splash::show);
tryToRun(Java::check);
String appName = appName();
appName = appName == null ? "" : " " + appName;
Splash.update("Launching" + appName + "...");
run(args);
}

Expand Down

0 comments on commit 4f4fd13

Please sign in to comment.