lua editor re-init on tab change bugfix
This commit is contained in:
parent
4e63922317
commit
89221d5367
|
@ -6,7 +6,7 @@ import java.net.URL;
|
|||
import java.util.concurrent.atomic.AtomicReference;
|
||||
|
||||
public class rusEFIVersion {
|
||||
public static final int CONSOLE_VERSION = 20211111;
|
||||
public static final int CONSOLE_VERSION = 20211112;
|
||||
public static AtomicReference<String> firmwareVersion = new AtomicReference<>("N/A");
|
||||
|
||||
public static long classBuildTimeMillis() {
|
||||
|
|
|
@ -67,7 +67,7 @@ public class LuaScriptPanel {
|
|||
super.paint(g);
|
||||
if (isFirstRender) {
|
||||
readFromECU();
|
||||
isFirstRender = true;
|
||||
isFirstRender = false;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue