Changeset 8395 in josm for trunk/src/org/openstreetmap/josm/actions
- Timestamp:
- 2015-05-19T00:05:33+02:00 (10 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/actions
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/CombineWayAction.java
r8390 r8395 222 222 final Way selectedWay = combineResult.a; 223 223 Main.main.undoRedo.add(combineResult.b); 224 if(selectedWay != null) 225 { 224 if(selectedWay != null) { 226 225 Runnable guiTask = new Runnable() { 227 226 @Override -
trunk/src/org/openstreetmap/josm/actions/JoinAreasAction.java
r8384 r8395 1328 1328 } 1329 1329 1330 for (Way way :innerWays) 1331 { 1330 for (Way way :innerWays) { 1332 1331 if (processedOuterWays.contains(way)) { 1333 1332 new Notification( -
trunk/src/org/openstreetmap/josm/actions/mapmode/ExtrudeAction.java
r8390 r8395 1144 1144 * @param seg the reference segment 1145 1145 */ 1146 private void drawReferenceSegment(Graphics2D g2, MapView mv, ReferenceSegment seg) 1147 { 1146 private void drawReferenceSegment(Graphics2D g2, MapView mv, ReferenceSegment seg) { 1148 1147 Point p1 = mv.getPoint(seg.p1); 1149 1148 Point p2 = mv.getPoint(seg.p2); -
trunk/src/org/openstreetmap/josm/actions/mapmode/SelectAction.java
r8345 r8395 509 509 return; 510 510 511 if (mode != Mode.ROTATE && mode != Mode.SCALE) // button is pressed in rotate mode 512 { 513 if ((e.getModifiersEx() & MouseEvent.BUTTON1_DOWN_MASK) == 0) 514 return; 511 if (mode != Mode.ROTATE && mode != Mode.SCALE && (e.getModifiersEx() & MouseEvent.BUTTON1_DOWN_MASK) == 0) { 512 // button is pressed in rotate mode 513 return; 515 514 } 516 515 -
trunk/src/org/openstreetmap/josm/actions/search/SearchAction.java
r8394 r8395 261 261 left.add(in_selection, GBC.eop()); 262 262 left.add(caseSensitive, GBC.eol()); 263 if(Main.pref.getBoolean("expert", false)) 264 { 263 if(Main.pref.getBoolean("expert", false)) { 265 264 left.add(allElements, GBC.eol()); 266 265 left.add(regexSearch, GBC.eol());
Note:
See TracChangeset
for help on using the changeset viewer.