fix chat welcome message chooser

pull/53/head
Zlatin Balevsky 2020-11-05 09:19:14 +00:00
parent 0c027e9b26
commit 1288a2b210
No known key found for this signature in database
GPG Key ID: A72832072D525E41
1 changed files with 1 additions and 1 deletions

View File

@ -316,7 +316,7 @@ class OptionsController {
} }
int rv = chooser.showOpenDialog(null) int rv = chooser.showOpenDialog(null)
if (rv == JFileChooser.APPROVE_OPTION) if (rv == JFileChooser.APPROVE_OPTION)
model.chatWelcomeFile = getSelectedFile().getAbsolutePath() model.chatWelcomeFile = chooser.getSelectedFile().getAbsolutePath()
} }
@ControllerAction @ControllerAction