Changeset 186 in josm
- Timestamp:
- 2007-01-04T22:59:52+01:00 (18 years ago)
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/org/openstreetmap/josm/gui/MainMenu.java
r184 r186 25 25 import org.openstreetmap.josm.actions.SaveAsAction; 26 26 import org.openstreetmap.josm.actions.SelectAllAction; 27 import org.openstreetmap.josm.actions.SplitWayAction; 27 28 import org.openstreetmap.josm.actions.UndoAction; 28 29 import org.openstreetmap.josm.actions.UnselectAllAction; … … 47 48 public final DownloadAction download = new DownloadAction(); 48 49 public final Action reverseSegment = new ReverseSegmentAction(); 50 public final Action splitWay = new SplitWayAction(); 49 51 public final Action alignInCircle = new AlignInCircleAction(); 50 52 public final Action alignInLine = new AlignInLineAction(); … … 87 89 editMenu.addSeparator(); 88 90 editMenu.add(reverseSegment); 91 editMenu.add(splitWay); 89 92 editMenu.add(alignInCircle); 90 93 editMenu.add(alignInLine); -
src/org/openstreetmap/josm/gui/layer/OsmDataLayer.java
r172 r186 201 201 c.undoCommand(); 202 202 redoCommands.push(c); 203 //TODO: Replace with listener scheme 204 setModified(uploadedModified); 203 setModified(uploadedModified || !commands.isEmpty()); 205 204 Main.ds.clearSelection(); 206 205 fireCommandsChanged(); -
src/org/openstreetmap/josm/gui/preferences/PreferenceDialog.java
r177 r186 76 76 setting.ok(); 77 77 if (requiresRestart) 78 JOptionPane.showMessageDialog( PreferenceDialog.this,tr("You have to restart JOSM for some settings to take effect."));78 JOptionPane.showMessageDialog(Main.parent,tr("You have to restart JOSM for some settings to take effect.")); 79 79 Main.parent.repaint(); 80 80 }
Note:
See TracChangeset
for help on using the changeset viewer.