Skip to content

Commit

Permalink
Fix incorrect extension filter
Browse files Browse the repository at this point in the history
  • Loading branch information
krissrex committed Nov 11, 2020
1 parent c185d89 commit acef468
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public void saveGif(Event e) {
}

chooser.setTitle("Save the gif...");
chooser.getExtensionFilters().setAll(new FileChooser.ExtensionFilter("Gif", "gif"));
chooser.getExtensionFilters().setAll(new FileChooser.ExtensionFilter("Gif", "*.gif"));

File file = chooser.showSaveDialog(stage);
if (file == null) {
Expand Down

0 comments on commit acef468

Please sign in to comment.