Changeset 11764 in josm for trunk/src/org/openstreetmap/josm


Ignore:
Timestamp:
2017-03-21T21:47:31+01:00 (7 years ago)
Author:
michael2402
Message:

Fix #14271: Deleting a tag in a filtered list was using the wrong index.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/properties/PropertiesDialog.java

    r11747 r11764  
    990990                    nextKeyIndex++;
    991991                }
    992                 nextKey = editHelper.getDataKey(nextKeyIndex);
     992                // We use unfiltered indexes here. So don't use getDataKey()
     993                nextKey = (String) tagData.getValueAt(nextKeyIndex, 0);
    993994            }
    994995
Note: See TracChangeset for help on using the changeset viewer.