Skip to content

Commit

Permalink
Modal filechooser fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Mehdi Haddad committed Mar 24, 2018
1 parent 1f55e02 commit a09854d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controller/NewInterviewDialogController.java
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public void openFileChooser(){
new FileChooser.ExtensionFilter(main._langBundle.getString("text_files"),l)
);
fileChooser.setTitle(main._langBundle.getString("select_verbatim"));
fichierChoisi = fileChooser.showOpenDialog(null);
fichierChoisi = fileChooser.showOpenDialog(this.window);
if(fichierChoisi != null){
newEntrFileName.setText(fichierChoisi.getPath());

Expand Down

0 comments on commit a09854d

Please sign in to comment.