Changeset 3215 in josm for trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletingTextField.java
- Timestamp:
- 03.05.2010 10:52:48 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletingTextField.java
r3210 r3215 19 19 import javax.swing.text.Document; 20 20 import javax.swing.text.PlainDocument; 21 import javax.swing.text.StyleConstants; 21 22 22 23 import org.openstreetmap.josm.gui.tagging.ac.AutoCompletionList; … … 52 53 } 53 54 55 // input method for non-latin characters (e.g. scim) 56 if (a != null && a.isDefined(StyleConstants.ComposedTextAttribute)) { 57 super.insertString(offs, str, a); 58 return; 59 } 60 54 61 // if the current offset isn't at the end of the document we don't autocomplete. 55 62 // If a highlighted autocompleted suffix was present and we get here Swing has
Note: See TracChangeset
for help on using the changeset viewer.
