Skip to content

Commit 7e829a9

Browse files
authored
Merge pull request #9219 from bicodrex/export_zip_desktop_fix
Fix ZIP export to open the parent folder of the exported project
2 parents 24ecfb3 + c103649 commit 7e829a9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ide/projectui/src/org/netbeans/modules/project/ui/zip/ExportZIP.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public static final class ExportZIPAction implements ActionListener {
115115
}
116116
StatusDisplayer.getDefault().setStatusText(MSG_created(zip));
117117
try {
118-
Desktop.getDesktop().open(zip);
118+
Desktop.getDesktop().open(zip.getParentFile());
119119
} catch (Exception x) {
120120
LOG.log(Level.FINE, null, x);
121121
}

0 commit comments

Comments
 (0)