Changeset 7585 in josm for trunk/src/org/openstreetmap/josm/gui/widgets
- Timestamp:
- 2014-09-26T11:41:40+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/widgets/FileChooserManager.java
r7578 r7585 30 30 * Property to enable use of native file dialogs. 31 31 */ 32 public static final BooleanProperty PROP_USE_NATIVE_FILE_DIALOG = new BooleanProperty("use.native.file.dialog", false); 32 public static final BooleanProperty PROP_USE_NATIVE_FILE_DIALOG = new BooleanProperty("use.native.file.dialog", 33 // Native dialogs do not support file filters, so do not set them as default, except for OS X where they never worked 34 Main.isPlatformOsx()); 33 35 34 36 private final boolean open;
Note:
See TracChangeset
for help on using the changeset viewer.