not much difference especially for sandboxes?

This commit is contained in:
rusefillc 2023-09-26 22:46:51 -04:00
parent 5a8406076d
commit 83ddbcdc24
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ public class LiveDataParserSandbox {
VariableValueSource valueSource = getVariableValueSource(values);
new FrameHelper(JDialog.EXIT_ON_CLOSE).showFrame(new LiveDataParserPanel(new UIContext(), valueSource, "ac_control.cpp").getContent());
new FrameHelper().showFrame(new LiveDataParserPanel(new UIContext(), valueSource, "ac_control.cpp").getContent());
}
@Nullable

View File

@ -9,6 +9,6 @@ public class LiveDataPaneSandbox {
UIContext uiContext = new UIContext();
InitOnFirstPaintPanel panel = LiveDataPane.createLazy(uiContext);
new FrameHelper(WindowConstants.EXIT_ON_CLOSE).showFrame(panel.getContent());
new FrameHelper().showFrame(panel.getContent());
}
}