From bfdcec02cd41388558820ec610dd39f56452c6a9 Mon Sep 17 00:00:00 2001 From: Devesh Khandelwal Date: Mon, 10 Oct 2016 15:38:12 +0530 Subject: [PATCH] :package: EscherConverter 1.1 - GUI working and launches by default. --- pom.xml | 2 +- src/main/java/edu/ucsd/sbrg/escher/EscherConverter.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 0d257c9..6e9aa97 100644 --- a/pom.xml +++ b/pom.xml @@ -16,7 +16,7 @@ ${project.artifactId} - 1.0.0 + 1.1.0 https://github.com/SBRG/EscherConverter 2015 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. diff --git a/src/main/java/edu/ucsd/sbrg/escher/EscherConverter.java b/src/main/java/edu/ucsd/sbrg/escher/EscherConverter.java index d200b31..8349031 100644 --- a/src/main/java/edu/ucsd/sbrg/escher/EscherConverter.java +++ b/src/main/java/edu/ucsd/sbrg/escher/EscherConverter.java @@ -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); } }