diff --git a/splinex/src/org/openstreetmap/josm/plugins/Splinex/DrawSplineAction.java b/splinex/src/org/openstreetmap/josm/plugins/Splinex/DrawSplineAction.java
index d4fd93f..f9e7721 100644
|
a
|
b
|
public class DrawSplineAction extends MapMode implements MapViewPaintable, KeyPr
|
| 82 | 82 | if (!isEnabled()) |
| 83 | 83 | return; |
| 84 | 84 | super.enterMode(); |
| 85 | | readPreferences(); |
| 86 | 85 | |
| 87 | 86 | Main.registerActionShortcut(backspaceAction, backspaceShortcut); |
| 88 | 87 | |
| … |
… |
public class DrawSplineAction extends MapMode implements MapViewPaintable, KeyPr
|
| 96 | 95 | |
| 97 | 96 | int initialMoveDelay, initialMoveThreshold; |
| 98 | 97 | |
| 99 | | private void readPreferences() { |
| | 98 | @Override |
| | 99 | protected void readPreferences() { |
| 100 | 100 | rubberLineColor = Main.pref.getColor(marktr("helper line"), null); |
| 101 | 101 | if (rubberLineColor == null) |
| 102 | 102 | rubberLineColor = PaintColors.SELECTED.get(); |