Changeset 33860 in osm for applications
- Timestamp:
- 2017-11-21T23:56:45+01:00 (7 years ago)
- Location:
- applications/editors/josm/plugins/pt_assistant
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/pt_assistant/build.xml
r33619 r33860 5 5 <property name="commit.message" value="Commit message"/> 6 6 <!-- enter the *lowest JOSM version this plugin is currently compatible with --> 7 <property name="plugin.main.version" value="128 28"/>7 <property name="plugin.main.version" value="12840"/> 8 8 9 9 <property name="plugin.author" value="Darya Golovko darya0705@gmail.com"/> -
applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/actions/FixTask.java
r33571 r33860 88 88 MainApplication.undoRedo.afterAdd(); 89 89 MainApplication.getMap().repaint(); 90 // tree.resetErrors();91 MainApplication.getLayerManager().getEditDataSet().fireSelectionChanged();92 90 }); 93 91 } catch (InterruptedException | InvocationTargetException e) { -
applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/gui/PTAssistantPreferenceSetting.java
r33326 r33860 60 60 @Override 61 61 public boolean ok() { 62 Main.pref.put ("pt_assistant.download-incomplete", this.downloadIncompleteMembers.isSelected());63 Main.pref.put ("pt_assistant.stop-area-tests", this.stopArea.isSelected());62 Main.pref.putBoolean("pt_assistant.download-incomplete", this.downloadIncompleteMembers.isSelected()); 63 Main.pref.putBoolean("pt_assistant.stop-area-tests", this.stopArea.isSelected()); 64 64 return false; 65 65 }
Note:
See TracChangeset
for help on using the changeset viewer.