Changeset 13496 in josm
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/tagging/presets/TaggingPreset.java
r13490 r13496 495 495 if (!sel.isEmpty()) { 496 496 DataSet ds = sel.iterator().next().getDataSet(); 497 if (ds != null) { 498 disableApply = ds.isLocked(); 499 } 497 disableApply = ds != null && ds.isLocked(); 500 498 } 501 499 answer = new PresetDialog(p, title, preset_name_label ? null : (ImageIcon) getValue(Action.SMALL_ICON), -
trunk/test/unit/org/openstreetmap/josm/actions/upload/ValidateUploadHookTest.java
r12571 r13496 21 21 @Rule 22 22 @SuppressFBWarnings(value = "URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD") 23 public JOSMTestRules test = new JOSMTestRules().platform().fakeAPI().timeout( 20000);23 public JOSMTestRules test = new JOSMTestRules().platform().fakeAPI().timeout(30000); 24 24 25 25 /**
Note:
See TracChangeset
for help on using the changeset viewer.