Skip to content

Commit

Permalink
📦 EscherConverter 1.1 - GUI working and launches by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
devkhan committed Oct 10, 2016
1 parent fa911e4 commit bfdcec0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<!-- =================================================================== -->

<name>${project.artifactId}</name>
<version>1.0.0</version>
<version>1.1.0</version>
<url>https://github.com/SBRG/EscherConverter</url>
<inceptionYear>2015</inceptionYear>
<description>EscherConverter is a stand-alone program that reads files created with the graphical network editor Escher and converts them to files in community standard formats.</description>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/edu/ucsd/sbrg/escher/EscherConverter.java
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,7 @@ public Window initGUI(AppConf appConf) {
*/
@Override
public boolean showsGUI() {
return props.containsKey(GUIOptions.GUI) && props.getBooleanProperty(GUIOptions.GUI);
return !props.containsKey(GUIOptions.GUI) || props.getBooleanProperty(GUIOptions.GUI);
}

}

0 comments on commit bfdcec0

Please sign in to comment.