Ignore:
Timestamp:
2014-09-26T11:41:40+02:00 (10 years ago)
Author:
Don-vip
Message:

see #10024, see #10455 - use native file dialogs by default on OS X

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/widgets/FileChooserManager.java

    r7578 r7585  
    3030     * Property to enable use of native file dialogs.
    3131     */
    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());
    3335
    3436    private final boolean open;
Note: See TracChangeset for help on using the changeset viewer.