Index: applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/customurl/UtilsPluginPreferences.java
===================================================================
--- applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/customurl/UtilsPluginPreferences.java	(revision 28492)
+++ applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/customurl/UtilsPluginPreferences.java	(revision 28523)
@@ -13,5 +13,4 @@
 import org.openstreetmap.josm.gui.widgets.HistoryComboBox;
 import org.openstreetmap.josm.gui.widgets.HtmlPanel;
-import java.awt.GridBagConstraints;
 import java.awt.event.ActionListener;
 import javax.swing.JPanel;
@@ -38,8 +37,5 @@
     @Override
     public void addGui(PreferenceTabbedPane gui) {
-        JPanel pp = gui.createPreferenceTab(this);
-        JPanel all = new JPanel();
-        GridBagLayout layout = new GridBagLayout();
-        all.setLayout(layout);
+        JPanel all = new JPanel(new GridBagLayout());
 
         // FIXME: get rid of hardcoded URLS
@@ -103,6 +99,5 @@
         });
         all.add(table,GBC.eop().fill());
-
-        pp.add(all, GBC.eol().fill(GridBagConstraints.BOTH));
+        createPreferenceTabWithScrollPane(gui, all);
     }
 
