Skip to content

Commit f3b35e8

Browse files
committed
Toolkit button bug fix
1 parent 7e5ae13 commit f3b35e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

swan-assist/src/main/java/de/fraunhofer/iem/swan/assist/ui/dialog/RunAnalysisDialog.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,9 +227,9 @@ private void setParameters() {
227227
parameters.put(Constants.CONFIGURATION_FILE, config.getProperty("swan_default_param_value"));
228228

229229
if(!MEKARadioButton.isSelected()){
230-
parameters.put(Constants.TOOLKIT, MEKARadioButton.getText());
231-
}else{
232230
parameters.put(Constants.TOOLKIT, WEKARadioButton.getText());
231+
}else{
232+
parameters.put(Constants.TOOLKIT, MEKARadioButton.getText());
233233
}
234234
parameters.put(Constants.SOURCE_DIRECTORY, sourceDirTextbox.getText());
235235
parameters.put(Constants.OUTPUT_DIRECTORY, outputDir.getText());

0 commit comments

Comments
 (0)