firmware flashing screen should appear on same screen as console splash screen

This commit is contained in:
rusefi 2021-10-28 15:34:06 -04:00
parent 3b989ddbf2
commit 6350076787
2 changed files with 2 additions and 1 deletions

View File

@ -6,7 +6,7 @@ import java.net.URL;
import java.util.concurrent.atomic.AtomicReference;
public class rusEFIVersion {
public static final int CONSOLE_VERSION = 20211027;
public static final int CONSOLE_VERSION = 20211028;
public static AtomicReference<String> firmwareVersion = new AtomicReference<>("N/A");
public static long classBuildTimeMillis() {

View File

@ -46,6 +46,7 @@ public class FirmwareFlasher {
if (dialogResult != JOptionPane.YES_OPTION)
return;
wnd.getFrame().setLocationRelativeTo(component);
wnd.showFrame(TITLE);
ExecHelper.submitAction(() -> doFlashFirmware(wnd, fileName), FirmwareFlasher.class + " extProcessThread");