- Timestamp:
- 2015-01-25T03:37:12+01:00 (11 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/org/openstreetmap/josm/actions/JoinAreasAction.java ¶
r7534 r7987 478 478 allWays.addAll(pol.innerWays); 479 479 } 480 DataSet ds = Main.main.getCurrentDataSet();480 DataSet ds = ways.iterator().next().getDataSet(); 481 481 if (ds != null) { 482 482 ds.setSelected(allWays); -
TabularUnified trunk/src/org/openstreetmap/josm/actions/PasteAction.java ¶
r7005 r7987 93 93 // But this does not work if the shortcut is changed to a single key (see #9055) 94 94 // Observed behaviour: getActionCommand() returns Action.NAME when triggered via menu, but shortcut text when triggered with it 95 if (!getValue(NAME).equals(e.getActionCommand())) { 95 if (e != null && !getValue(NAME).equals(e.getActionCommand())) { 96 96 final Point mp = MouseInfo.getPointerInfo().getLocation(); 97 97 final Point tl = Main.map.mapView.getLocationOnScreen(); -
TabularUnified trunk/src/org/openstreetmap/josm/data/Preferences.java ¶
r7894 r7987 1684 1684 1685 1685 String[] obsolete = { 1686 "validator.tests", // 01/2014 - can be removed end-2014. Replaced by validator.skip1687 "validator.testsBeforeUpload", // 01/2014 - can be removed end-2014. Replaced by validator.skipBeforeUpload1688 "validator.TagChecker.sources", // 01/2014 - can be removed end-2014. Replaced by validator.TagChecker.source1689 "validator.TagChecker.usedatafile", // 01/2014 - can be removed end-2014. Replaced by validator.TagChecker.source1690 "validator.TagChecker.useignorefile", // 01/2014 - can be removed end-2014. Replaced by validator.TagChecker.source1691 "validator.TagChecker.usespellfile", // 01/2014 - can be removed end-2014. Replaced by validator.TagChecker.source1692 "validator.org.openstreetmap.josm.data.validation.tests.MapCSSTagChecker.sources" // 01/2014 - can be removed end-2014. Replaced by validator.org.openstreetmap.josm.data.validation.tests.MapCSSTagChecker.entries1693 1686 }; 1694 1687 for (String key : obsolete) {
Note:
See TracChangeset
for help on using the changeset viewer.