Changeset 14678 in josm for trunk/src/org
- Timestamp:
- 2019-01-12T17:46:10+01:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/properties/PropertiesDialog.java
r14677 r14678 1114 1114 @Override 1115 1115 public void actionPerformed(ActionEvent e) { 1116 if ( isPerforming.get())1116 if (!/*successful*/isPerforming.compareAndSet(false, true)) { 1117 1117 return; 1118 isPerforming.set(true);1118 } 1119 1119 try { 1120 1120 editHelper.addTag(); … … 1140 1140 @Override 1141 1141 public void actionPerformed(ActionEvent e) { 1142 if ( isPerforming.get())1142 if (!/*successful*/isPerforming.compareAndSet(false, true)) { 1143 1143 return; 1144 isPerforming.set(true);1144 } 1145 1145 try { 1146 1146 if (tagTable.getSelectedRowCount() == 1) {
Note:
See TracChangeset
for help on using the changeset viewer.