Changeset 15490 in josm
- Timestamp:
- 2019-11-01T13:14:22+01:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/properties/HelpAction.java
r14647 r15490 77 77 if (tagTable.getSelectedRowCount() == 1) { 78 78 int row = tagTable.getSelectedRow(); 79 String key = Utils.encodeUrl(tagKeySupplier.apply(row));79 String key = tagKeySupplier.apply(row); 80 80 Map<String, Integer> m = tagValuesSupplier.apply(row); 81 81 if (!m.isEmpty()) { 82 String val = Utils.encodeUrl(m.entrySet().iterator().next().getKey());82 String val = m.entrySet().iterator().next().getKey(); 83 83 MainApplication.worker.execute(() -> displayTagHelp(key, val)); 84 84 }
Note:
See TracChangeset
for help on using the changeset viewer.