file choosing misc

This commit is contained in:
Ben Fry
2014-05-10 19:06:31 -04:00
parent 246cffe580
commit 09366bcc4c
2 changed files with 5 additions and 1 deletions

View File

@@ -833,7 +833,9 @@ public class Base {
}
final String prompt = "Open a Processing sketch...";
if (Preferences.getBoolean("chooser.files.native")) { // don't use native dialogs on Linux //$NON-NLS-1$
// don't use native dialogs on Linux
if (Preferences.getBoolean("chooser.files.native")) { //$NON-NLS-1$
// get the front-most window frame for placing file dialog
FileDialog fd = new FileDialog(activeEditor, prompt, FileDialog.LOAD);

View File

@@ -39,6 +39,8 @@ o https://github.com/processing/processing/pull/2273
X improve handling of tool loading
X QuickReference tool was able to bring down the environment
X https://github.com/processing/processing/issues/2229
X save the previous open dialog so that we return to the directory
X https://github.com/processing/processing/pull/2366
earlier (2.1.2)
X added get/set methods for status lines (Manindra)