Changeset 1765 in josm
- Timestamp:
- 2009-07-11T13:07:47+02:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/PropertiesDialog.java
r1763 r1765 202 202 }; 203 203 final JDialog dlg = optionPane.createDialog(Main.parent, tr("Change values?")); 204 dlg.setAlwaysOnTop(true); 205 dlg.toFront(); 204 206 205 207 values.getEditor().addActionListener(new ActionListener() { … … 343 345 } 344 346 }; 345 pane.createDialog(Main.parent, tr("Change values?")).setVisible(true); 347 JDialog dialog = pane.createDialog(Main.parent, tr("Change values?")); 348 dialog.setAlwaysOnTop(true); 349 dialog.toFront(); 350 dialog.setVisible(true); 351 346 352 if (!Integer.valueOf(JOptionPane.OK_OPTION).equals(pane.getValue())) 347 353 return;
Note:
See TracChangeset
for help on using the changeset viewer.