Index: trunk/src/org/openstreetmap/josm/gui/tagging/TaggingPresetItems.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/tagging/TaggingPresetItems.java	(revision 7407)
+++ trunk/src/org/openstreetmap/josm/gui/tagging/TaggingPresetItems.java	(revision 7411)
@@ -362,6 +362,11 @@
         }
 
+        /**
+         * Adds a new {@code JLabel} to the given panel.
+         * @param p The panel
+         * @param label The text label
+         */
         public static void addLabel(JPanel p, String label) {
-            p.add(new JLabel(label), GBC.eol());
+            p.add(new JLabel(label), GBC.eol().fill(GBC.HORIZONTAL));
         }
     }
@@ -387,5 +392,5 @@
             }
             if (url != null) {
-                p.add(new UrlLabel(url, locale_text, 2), GBC.eol().insets(0, 10, 0, 0));
+                p.add(new UrlLabel(url, locale_text, 2), GBC.eol().insets(0, 10, 0, 0).fill(GBC.HORIZONTAL));
             }
             return false;
