Changeset 33140 in osm for applications/editors/josm/plugins/splinex/src/org
- Timestamp:
- 2017-02-09T00:20:49+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/splinex/src/org/openstreetmap/josm/plugins/Splinex/DrawSplineAction.java
r32917 r33140 28 28 import org.openstreetmap.josm.data.osm.OsmPrimitive; 29 29 import org.openstreetmap.josm.data.osm.visitor.paint.MapPaintSettings; 30 import org.openstreetmap.josm.data.osm.visitor.paint.PaintColors;31 30 import org.openstreetmap.josm.data.preferences.ColorProperty; 32 31 import org.openstreetmap.josm.gui.MapFrame; … … 106 105 @Override 107 106 protected void readPreferences() { 108 rubberLineColor = new ColorProperty(marktr("helper line"), (Color) null).get(); 109 if (rubberLineColor == null) 110 rubberLineColor = PaintColors.SELECTED.get(); 111 107 rubberLineColor = new ColorProperty(marktr("helper line"), Color.RED).get(); 112 108 initialMoveDelay = Main.pref.getInteger("edit.initial-move-", 200); 113 109 initialMoveThreshold = Main.pref.getInteger("edit.initial-move-threshold", 5);
Note:
See TracChangeset
for help on using the changeset viewer.