ui: center fatal error dialog on screen

This commit is contained in:
Adam
2019-08-19 17:34:48 -04:00
parent 07cf27c8fc
commit 5fafa6faf1

View File

@@ -161,6 +161,7 @@ public class FatalErrorDialog extends JDialog
addButton("Exit", () -> System.exit(-1));
pack();
setLocationRelativeTo(null);
SplashScreen.stop();
setVisible(true);
}