1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* fix "Double-Click Reveal in Finder"

This commit is contained in:
Reinhard Pointner 2014-07-30 06:38:28 +00:00
parent c47a3ac45a
commit af000a2026

View File

@ -251,7 +251,7 @@ public class RenamePanel extends JComponent {
JList list = (JList) evt.getSource();
if (list.getSelectedIndex() >= 0) {
File item = (File) list.getSelectedValue();
Desktop.getDesktop().browse(item.getParentFile().toURI());
Desktop.getDesktop().open(item.getParentFile());
}
} catch (Exception e) {
Logger.getLogger(RenamePanel.class.getName()).log(Level.WARNING, e.getMessage());