File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
src/main/java/org/emrick/project Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 11@ echo off
2- SET VERSION = " 0. 6.1"
2+ SET VERSION = " 6.1.0 "
33SET DIR = " .\build\dist\\%VERSION% \Emrick Designer"
44SET NAME = " Emrick Designer"
55call .\gradlew.bat clean
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ plugins {
55}
66
77group ' org.emrick.project'
8- version ' 0. 6.1'
8+ version ' 6.1.0 '
99var jarTitle = " Emrick-Designer-$version "
1010
1111repositories {
Original file line number Diff line number Diff line change @@ -217,14 +217,18 @@ public MediaEditorGUI(String file) {
217217 // Scrub bar cursor starts on first count of drill by default
218218 useStartDelay = true ;
219219
220- createAndShowGUI ();
221220 if (!file .equals ("" )) {
222221 if (file .endsWith (".emrick" )) {
222+ createAndShowGUI ();
223223 loadProject (new File (file ));
224224 } else {
225225 runServer (file );
226+ createAndShowGUI ();
226227 }
228+ } else {
229+ createAndShowGUI ();
227230 }
231+
228232 }
229233
230234 private void setPlaybackTimerTimeByFps () {
@@ -587,7 +591,6 @@ public void createAndShowGUI() {
587591 stopShowItem .addActionListener (e -> {
588592 footballFieldPanel .setSerialTransmitter (null );
589593 stopShowItem .setEnabled (false );
590- runMenu .remove (stopShowItem );
591594 runShowItem .setEnabled (true );
592595 flowViewerItem .setEnabled (true );
593596 });
You can’t perform that action at this time.
0 commit comments