- Timestamp:
- 2015-10-20T16:37:44+02:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/SessionSaveAsAction.java
r8913 r8918 67 67 saveSession(); 68 68 } catch (CancelException ignore) { 69 if (Main.isTraceEnabled()) { 70 Main.trace(ignore.getMessage()); 71 } 69 72 } 70 73 } -
trunk/src/org/openstreetmap/josm/gui/io/SaveLayersDialog.java
r8913 r8918 110 110 111 111 saveSessionAction = new SaveSessionAction(); 112 pnl.add(new JButton(saveSessionAction), GBC.std(1, 0).insets(5, 5, 5, 0). 112 pnl.add(new JButton(saveSessionAction), GBC.std(1, 0).insets(5, 5, 5, 0).fill(GBC.HORIZONTAL)); 113 113 114 114 discardAndProceedAction = new DiscardAndProceedAction(); … … 117 117 118 118 cancelAction = new CancelAction(); 119 pnl.add(new JButton(cancelAction), GBC.std(1, 1).insets(5, 5, 5, 5). 119 pnl.add(new JButton(cancelAction), GBC.std(1, 1).insets(5, 5, 5, 5).fill(GBC.HORIZONTAL)); 120 120 121 121 JPanel pnl2 = new JPanel(); … … 376 376 closeDialog(); 377 377 } catch (CancelException ignore) { 378 if (Main.isTraceEnabled()) { 379 Main.trace(ignore.getMessage()); 380 } 378 381 } 379 382 }
Note:
See TracChangeset
for help on using the changeset viewer.