Changeset 6660 in josm
- Timestamp:
- 2014-01-10T12:03:35+01:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/io/BasicUploadSettingsPanel.java
r6654 r6660 54 54 55 55 protected JPanel buildUploadCommentPanel() { 56 JPanel pnl = new JPanel(); 57 pnl.setLayout(new GridBagLayout()); 56 JPanel pnl = new JPanel(new GridBagLayout()); 58 57 59 58 final JEditorPane commentLabel = JosmEditorPane.createJLabelLikePane(); 60 59 commentLabel.setText("<html><b>" + tr("Provide a brief comment for the changes you are uploading:")); 61 pnl.add(commentLabel, GBC.eol().insets(0, 5, 10, 3) );60 pnl.add(commentLabel, GBC.eol().insets(0, 5, 10, 3).fill(GBC.HORIZONTAL)); 62 61 hcbUploadComment.setToolTipText(tr("Enter an upload comment")); 63 62 hcbUploadComment.setMaxTextLength(Changeset.MAX_COMMENT_LENGTH); … … 81 80 } 82 81 }); 83 pnl.add(sourceLabel, GBC.eol().insets(0, 8, 10, 3) );82 pnl.add(sourceLabel, GBC.eol().insets(0, 8, 10, 3).fill(GBC.HORIZONTAL)); 84 83 85 84 hcbUploadSource.setToolTipText(tr("Enter a source"));
Note:
See TracChangeset
for help on using the changeset viewer.