trying to figure out some issues with the export folder tool

This commit is contained in:
benfry
2006-03-23 14:41:47 +00:00
parent 2a8691218b
commit aa395713bb
2 changed files with 8 additions and 1 deletions
+5 -1
View File
@@ -693,7 +693,11 @@ public class Editor extends JFrame
item = new JMenuItem("Export Folder...");
item.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
new ExportFolder(Editor.this).show();
SwingUtilities.invokeLater(new Runnable() {
public void run() {
new ExportFolder(Editor.this).show();
}
});
}
});
menu.add(item);