Changeset 1448 in josm for trunk/src/org/openstreetmap/josm/actions/mapmode
- Timestamp:
- 2009-02-28T18:53:22+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/mapmode/DrawAction.java
r1447 r1448 119 119 EventQueue.invokeLater(new Runnable() { 120 120 public void run() { 121 // Don't change cursor when mode has changed already 122 if(!(Main.map.mapMode instanceof DrawAction)) 123 return; 121 124 switch(c) { 122 125 case way: … … 194 197 @Override public void enterMode() { 195 198 super.enterMode(); 199 currCursor = Cursors.crosshair; 196 200 selectedColor = Main.pref.getColor(marktr("selected"), Color.red); 197 201 drawHelperLine = Main.pref.getBoolean("draw.helper-line", true);
Note:
See TracChangeset
for help on using the changeset viewer.