Changeset 18996 in josm


Ignore:
Timestamp:
2024-02-22T18:49:11+01:00 (3 months ago)
Author:
stoecker
Message:

see #23506, see #23408 - readd the bracket lost in last checkin

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/io/SaveLayersDialog.java

    r18994 r18996  
    122122                }
    123123                AbstractModifiableLayer odl = (AbstractModifiableLayer) l;
    124                 if (odl.isModified() &&
     124                if (odl.isModified() && (
    125125                        (odl.isSavable() && odl.requiresSaveToFile()) ||
    126                         (odl.isUploadable() && odl.requiresUploadToServer() && !odl.isUploadDiscouraged())) {
     126                        (odl.isUploadable() && odl.requiresUploadToServer() && !odl.isUploadDiscouraged()))) {
    127127                    layersWithUnsavedChanges.add(odl);
    128128                }
Note: See TracChangeset for help on using the changeset viewer.