Changeset 17414 in josm
- Timestamp:
- 2020-12-17T14:37:44+01:00 (4 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/actions
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/UploadNotesAction.java
r13437 r17414 23 23 /** Create a new action to upload notes */ 24 24 public UploadNotesAction() { 25 super(false); 25 26 putValue(SHORT_DESCRIPTION, tr("Upload note changes to server")); 26 27 putValue(NAME, tr("Upload notes")); -
trunk/src/org/openstreetmap/josm/actions/mapmode/AddNoteAction.java
r16138 r17414 98 98 // Do nothing 99 99 } 100 101 @Override 102 protected boolean listenToLayerChange() { 103 return false; 104 } 105 106 @Override 107 protected boolean listenToSelectionChange() { 108 return false; 109 } 100 110 }
Note:
See TracChangeset
for help on using the changeset viewer.