Changeset 27203 in osm for applications/editors/josm
- Timestamp:
- 2011-12-10T17:26:41+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/smed/plugs/oseam/src/oseam
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/dialogs/OSeaMAction.java
r27202 r27203 28 28 Node nextNode = null; 29 29 Selection = newSelection; 30 node = null; 31 panelMain.mark.clearSign(); 30 32 31 for (OsmPrimitive osm : Selection) { 33 32 if (osm instanceof Node) { … … 38 37 panelMain.mark.parseMark(node); 39 38 } 39 } else { 40 node = null; 41 panelMain.mark.clearSign(); 42 manager.showVisualMessage(Messages.getString("OneNode")); 40 43 } 41 44 } 42 45 } 43 46 if (nextNode == null) { 47 node = null; 48 panelMain.mark.clearSign(); 44 49 manager.showVisualMessage(Messages.getString("SelectNode")); 45 50 } -
applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/seamarks/SeaMark.java
r27202 r27203 647 647 sectors.clear(); 648 648 addLight(); 649 setLightRef(""); 649 650 } 650 651 … … 1638 1639 1639 1640 dlg.panelMain.syncPanel(); 1640 1641 1641 } 1642 1642 … … 2092 2092 2093 2093 public void saveSign(Node node) { 2094 2094 2095 2095 if (getObject() != Obj.UNKNOWN) { 2096 2096
Note:
See TracChangeset
for help on using the changeset viewer.