Ignore:
Timestamp:
03.05.2010 10:52:48 (2 years ago)
Author:
bastiK
Message:

fixed #4979 Exception when opening the download window; fixed #2221 - Unexcepted Exception when typing into "Change values?" box with an input method on Mac OS X

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletingComboBox.java

    r3214 r3215  
    1818import javax.swing.text.JTextComponent; 
    1919import javax.swing.text.PlainDocument; 
     20import javax.swing.text.StyleConstants; 
    2021 
    2122/** 
     
    5758                return; 
    5859            if (!autocompleteEnabled) 
     60                return; 
     61            // input method for non-latin characters (e.g. scim) 
     62            if (a != null && a.isDefined(StyleConstants.ComposedTextAttribute)) 
    5963                return; 
    6064 
Note: See TracChangeset for help on using the changeset viewer.