Index: trunk/src/org/openstreetmap/josm/gui/tagging/TaggingPreset.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/tagging/TaggingPreset.java	(revision 5929)
+++ trunk/src/org/openstreetmap/josm/gui/tagging/TaggingPreset.java	(revision 5931)
@@ -1760,5 +1760,5 @@
 
             class PresetDialog extends ExtendedDialog {
-                public PresetDialog(Component content, String title, boolean disableApply) {
+                public PresetDialog(Component content, String title, ImageIcon icon, boolean disableApply) {
                     super(Main.parent,
                             title,
@@ -1767,4 +1767,6 @@
                                         new String[] { tr("Apply Preset"), tr("Cancel") },
                                         true);
+                    if (icon != null)
+                        setIconImage(icon.getImage());
                     contentInsets = new Insets(10,5,0,5);
                     if (showNewRelation) {
@@ -1788,5 +1790,5 @@
             }
 
-            answer = new PresetDialog(p, title, (sel.size() == 0)).getValue();
+            answer = new PresetDialog(p, title, (ImageIcon) getValue(Action.SMALL_ICON), (sel.size() == 0)).getValue();
         }
         if (!showNewRelation && answer == 2)
