Changeset 35720 in osm


Ignore:
Timestamp:
2021-03-10T08:37:58+01:00 (4 years ago)
Author:
GerdP
Message:

see #20484: PBF plugin FILE_FILTER too strict

  • revert 35708/osm
  • use pbf only in the list accepted extensions so that osm.pbf is used as default again
File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/pbf/src/org/openstreetmap/josm/plugins/pbf/PbfConstants.java

    r35708 r35720  
    1515     * File extension.
    1616     */
    17     String EXTENSION = "pbf";
     17    String EXTENSION = "osm.pbf";
    1818
    1919    /**
    2020     * File filter used in import/export dialogs.
    2121     */
    22     ExtensionFileFilter FILE_FILTER = new ExtensionFileFilter(EXTENSION, EXTENSION,
     22    ExtensionFileFilter FILE_FILTER = new ExtensionFileFilter("pbf", EXTENSION,
    2323            tr("OSM Server Files pbf compressed") + " (*."+EXTENSION+")");
    2424}
Note: See TracChangeset for help on using the changeset viewer.