Changeset 8463 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2015-06-04T00:15:53+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
r8444 r8463 520 520 @Override 521 521 public void actionPerformed(ActionEvent e) { 522 boolean sel=((JCheckBoxMenuItem) e.getSource()).getState(); 523 PROPERTY_FIX_TAG_LOCALE.put(sel); 522 boolean use=((JCheckBoxMenuItem) e.getSource()).getState(); 523 PROPERTY_FIX_TAG_LOCALE.put(use); 524 keys.setFixedLocale(use); 524 525 } 525 526 }); -
trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletingComboBox.java
r8461 r8463 314 314 useFixedLocale = f; 315 315 if (useFixedLocale) { 316 privateInputContext.selectInputMethod(new Locale("en", "US")); 316 Locale oldLocale = privateInputContext.getLocale(); 317 Main.info("Using English input method"); 318 if (!privateInputContext.selectInputMethod(new Locale("en", "US"))) { 319 // Unable to use English keyboard layout, disable the feature 320 Main.warn("Unable to use English input method"); 321 useFixedLocale = false; 322 if (oldLocale != null) { 323 Main.info("Restoring input method to " + oldLocale); 324 if (!privateInputContext.selectInputMethod(oldLocale)) { 325 Main.warn("Unable to restore input method to " + oldLocale); 326 } 327 } 328 } 317 329 } 318 330 }
Note:
See TracChangeset
for help on using the changeset viewer.