Ignore:
Timestamp:
2016-02-19T23:36:27+01:00 (10 years ago)
Author:
floscher
Message:

[mapillary] Highlight the sequence that the selected image is contained in

  • this also fixes one unit test that failed since the last commit
  • and the JOSM-preferences are no longer overwritten everytime you run ./gradlew runJosm, only when you ./gradlew clean
File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/mapillary/build.gradle

    r32070 r32078  
    141141
    142142task activatePlugin(type: Copy) {
    143   from "gradle/josm-preferences.xml"
    144   into "$buildDir/.josm"
    145   rename 'josm-preferences.xml', 'preferences.xml'
     143  if (!new File("$buildDir/.josm/preferences.xml").exists()) {
     144    from "gradle/josm-preferences.xml"
     145    into "$buildDir/.josm"
     146    rename 'josm-preferences.xml', 'preferences.xml'
     147  }
    146148}
    147149
Note: See TracChangeset for help on using the changeset viewer.