Index: trunk/src/org/openstreetmap/josm/actions/downloadtasks/DownloadReferrersTask.java
===================================================================
--- trunk/src/org/openstreetmap/josm/actions/downloadtasks/DownloadReferrersTask.java	(revision 3015)
+++ trunk/src/org/openstreetmap/josm/actions/downloadtasks/DownloadReferrersTask.java	(revision 3016)
@@ -183,4 +183,6 @@
                 JOptionPane.WARNING_MESSAGE
         );
+        Main.map.conflictDialog.unfurlDialog();
+        Main.map.repaint();
     }
 
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/ToggleDialog.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/ToggleDialog.java	(revision 3015)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/ToggleDialog.java	(revision 3016)
@@ -187,4 +187,26 @@
 
     /**
+     * Changes the state of the dialog such that the user can see the content
+     * and takes care of the panel reconstruction.
+     */
+    public void unfurlDialog()
+    {
+        if (isDialogInDefaultView())
+            return;
+        if (isDialogInCollapsedView()) {
+            expand();
+            dialogsPanel.reconstruct(Action.COLLAPSED_TO_DEFAULT, this);
+        } else if (!isDialogShowing()) {
+            showDialog();
+            if (isDocked && isCollapsed) {
+                expand();
+            }
+            if (isDocked) {
+                dialogsPanel.reconstruct(Action.INVISIBLE_TO_DEFAULT, this);
+            }
+        }
+    }
+
+    /**
      * Hides the dialog
      */
@@ -343,5 +365,5 @@
                         @Override
                         public void mouseClicked(MouseEvent e) {
-                            // toggleExpandedState();
+                            // toggleExpandedState
                             if (isCollapsed) {
                                 expand();
