1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

Show Please install JavaFX error popup on startup if JavaFX is not installed

This commit is contained in:
Reinhard Pointner 2016-10-10 14:05:00 +08:00
parent 42459b5c45
commit f7a69ab559

View File

@ -146,7 +146,7 @@ public class Main {
try { try {
initJavaFX(); initJavaFX();
} catch (Throwable e) { } catch (Throwable e) {
debug.log(Level.WARNING, "Failed to initialize JavaFX", e); log.log(Level.SEVERE, "Failed to initialize JavaFX. Please install JavaFX.", e);
} }
// check if application help should be shown // check if application help should be shown