1
0
mirror of https://github.com/SKCraft/Launcher.git synced 2024-11-24 12:16:28 +01:00

Show the main launcher view slightly quicker.

This commit is contained in:
sk89q 2015-02-20 01:40:57 -08:00
parent ed4d6d2875
commit 5270e81ac3

View File

@ -70,7 +70,12 @@ public class LauncherFrame extends JFrame {
SwingHelper.setIconImage(this, Launcher.class, "icon.png");
loadInstances();
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
loadInstances();
}
});
}
private void initComponents() {