Changeset 28523 in osm for applications/editors/josm/plugins/utilsplugin2/src
- Timestamp:
- 2012-07-31T16:48:07+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/customurl/UtilsPluginPreferences.java
r28028 r28523 13 13 import org.openstreetmap.josm.gui.widgets.HistoryComboBox; 14 14 import org.openstreetmap.josm.gui.widgets.HtmlPanel; 15 import java.awt.GridBagConstraints;16 15 import java.awt.event.ActionListener; 17 16 import javax.swing.JPanel; … … 38 37 @Override 39 38 public void addGui(PreferenceTabbedPane gui) { 40 JPanel pp = gui.createPreferenceTab(this); 41 JPanel all = new JPanel(); 42 GridBagLayout layout = new GridBagLayout(); 43 all.setLayout(layout); 39 JPanel all = new JPanel(new GridBagLayout()); 44 40 45 41 // FIXME: get rid of hardcoded URLS … … 103 99 }); 104 100 all.add(table,GBC.eop().fill()); 105 106 pp.add(all, GBC.eol().fill(GridBagConstraints.BOTH)); 101 createPreferenceTabWithScrollPane(gui, all); 107 102 } 108 103
Note:
See TracChangeset
for help on using the changeset viewer.