lua editor re-init on tab change bugfix

This commit is contained in:
rusefi 2021-11-12 00:20:41 -05:00
parent 4e63922317
commit 89221d5367
2 changed files with 2 additions and 2 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 = 20211111;
public static final int CONSOLE_VERSION = 20211112;
public static AtomicReference<String> firmwareVersion = new AtomicReference<>("N/A");
public static long classBuildTimeMillis() {

View File

@ -67,7 +67,7 @@ public class LuaScriptPanel {
super.paint(g);
if (isFirstRender) {
readFromECU();
isFirstRender = true;
isFirstRender = false;
}
}
};