Ignore:
Timestamp:
2016-01-23T02:16:29+01:00 (9 years ago)
Author:
donvip
Message:

[josm_splinex] update to JOSM 9572 (patch by kolesar)

Location:
applications/editors/josm/plugins/splinex
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/splinex/build.xml

    r31926 r32013  
    11<?xml version="1.0" encoding="utf-8"?>
    2 <!--
    3 ** This is a template build file for a JOSM  plugin.
    4 **
    5 ** Maintaining versions
    6 ** ====================
    7 ** See README.template
    8 **
    9 ** Usage
    10 ** =====
    11 ** Call "ant help" to get possible build targets.
    12 **
    13 -->
    142<project name="splinex" default="dist" basedir=".">
    153
     
    175    <property name="commit.message" value="Commit message"/>
    186    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    19     <property name="plugin.main.version" value="7001"/>
     7    <property name="plugin.main.version" value="9572"/>
    208
    219    <!-- Configure these properties (replace "..." accordingly).
    22 
    23 
    24 
    2510         See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
    2611    -->
  • applications/editors/josm/plugins/splinex/src/org/openstreetmap/josm/plugins/Splinex/DrawSplineAction.java

    r31644 r32013  
    8383            return;
    8484        super.enterMode();
    85         readPreferences();
    8685
    8786        Main.registerActionShortcut(backspaceAction, backspaceShortcut);
     
    9796    int initialMoveDelay, initialMoveThreshold;
    9897
    99     private void readPreferences() {
     98    @Override
     99    protected void readPreferences() {
    100100        rubberLineColor = Main.pref.getColor(marktr("helper line"), null);
    101101        if (rubberLineColor == null)
Note: See TracChangeset for help on using the changeset viewer.