Ticket #16410: MainApplication.java.patch
| File MainApplication.java.patch, 833 bytes (added by , 8 years ago) |
|---|
-
src/org/openstreetmap/josm/gui/MainApplication.java
1029 1029 final SplashScreen splash = GuiHelper.runInEDTAndWaitAndReturn(SplashScreen::new); 1030 1030 // splash can be null sometimes on Linux, in this case try to load JOSM silently 1031 1031 final SplashProgressMonitor monitor = splash != null ? splash.getProgressMonitor() : new SplashProgressMonitor(null, e -> { 1032 Logging.debug(e.toString()); 1032 if (e != null) { 1033 Logging.debug(e.toString()); 1034 } 1033 1035 }); 1034 1036 monitor.beginTask(tr("Initializing")); 1035 1037 if (splash != null) {
