Changeset 18334 in josm for trunk/src/org
- Timestamp:
- 2021-12-20T14:20:06+01:00 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompTextField.java
r18258 r18334 158 158 // do not autocomplete on control or deleted chars 159 159 return; 160 if (getInputMethodRequests().getCommittedTextLength() != getDocument().getLength()) { 161 // do not autocomplete if there is uncommitted text (breaks Microsoft Japanese IME, see #21507) 162 return; 163 } 160 164 if (!AUTOCOMPLETE_NUMBERS && IS_NUMBER.matcher(newText).matches()) 161 165 return;
Note:
See TracChangeset
for help on using the changeset viewer.