- Timestamp:
- 2021-08-20T18:19:09+02:00 (3 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletingComboBox.java
r18125 r18141 38 38 39 39 private boolean autocompleteEnabled = true; 40 private boolean locked = false;40 private boolean locked; 41 41 42 42 private int maxTextLength = -1; -
trunk/src/org/openstreetmap/josm/tools/PlatformHookOsx.java
r18117 r18141 104 104 // "Mac" is the native LAF, "Aqua" is Quaqua. Both use native menus with native tooltips. 105 105 String laf = UIManager.getLookAndFeel().getID(); 106 return !("true".equals( Utils.getSystemProperty("apple.laf.useScreenMenuBar"))106 return !("true".equals(getSystemProperty("apple.laf.useScreenMenuBar")) 107 107 && ("Aqua".equals(laf) || laf.contains("Mac"))); 108 108 }
Note:
See TracChangeset
for help on using the changeset viewer.