We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70c81e6 commit a7fc80bCopy full SHA for a7fc80b
1 file changed
src/ConfigDialog.scala
@@ -64,8 +64,8 @@ class ConfigEditor(owner: JFrame, config: PythonConfig) extends JDialog(owner, "
64
}
65
66
def save(): Unit = {
67
- if (python2TextField.getText.nonEmpty) config.python2 = python2TextField.getText
68
- if (python3TextField.getText.nonEmpty) config.python3 = python3TextField.getText
+ config.python2 = python2TextField.getText
+ config.python3 = python3TextField.getText
69
70
71
0 commit comments