Skip to content

Commit 80e5b27

Browse files
committed
Fix mapping export UI prompt not supporting creation of new files
1 parent c1350ff commit 80e5b27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

recaf-ui/src/main/java/software/coley/recaf/util/FileChooserBundle.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public File showFileOpen(@Nullable Window window) {
113113
*/
114114
@Nullable
115115
public File showFileExport(@Nullable Window window) {
116-
File file = fileExport.showOpenDialog(window);
116+
File file = fileExport.showSaveDialog(window);
117117
if (file != null)
118118
fileExport.setInitialDirectory(file.getParentFile());
119119
if (fileExportListener != null)

0 commit comments

Comments
 (0)