- Timestamp:
- 2016-04-10T12:56:01+02:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/properties/TagEditHelper.java
r10000 r10132 589 589 cb.requestFocusInWindow(); 590 590 cb.getEditor().selectAll(); 591 sysSel.setContents(old, null); 591 if (old != null) { 592 sysSel.setContents(old, null); 593 } 592 594 } else { 593 595 cb.requestFocusInWindow(); -
trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletingComboBox.java
r10102 r10132 203 203 Transferable old = Utils.getTransferableContent(sysSel); 204 204 editorComponent.selectAll(); 205 sysSel.setContents(old, null); 205 if (old != null) { 206 sysSel.setContents(old, null); 207 } 206 208 } else { 207 209 editorComponent.selectAll();
Note:
See TracChangeset
for help on using the changeset viewer.