Index: trunk/src/org/openstreetmap/josm/actions/CreateMultipolygonAction.java
===================================================================
--- trunk/src/org/openstreetmap/josm/actions/CreateMultipolygonAction.java	(revision 6806)
+++ trunk/src/org/openstreetmap/josm/actions/CreateMultipolygonAction.java	(revision 6807)
@@ -99,23 +99,23 @@
                 public void run() {
                     Main.main.undoRedo.add(command);
-                }
-            });
-
-            // Use 'SwingUtilities.invokeLater' to make sure the relationListDialog
-            // knows about the new relation before we try to select it.
-            // (Yes, we are already in event dispatch thread. But DatasetEventManager
-            // uses 'SwingUtilities.invokeLater' to fire events so we have to do
-            // the same.)
-            SwingUtilities.invokeLater(new Runnable() {
-                @Override
-                public void run() {
-                    Main.map.relationListDialog.selectRelation(relation);
-                    if (Main.pref.getBoolean("multipoly.show-relation-editor", false)) {
-                        //Open relation edit window, if set up in preferences
-                        RelationEditor editor = RelationEditor.getEditor(Main.main.getEditLayer(), relation, null);
-
-                        editor.setModal(true);
-                        editor.setVisible(true);
-                    }
+
+                    // Use 'SwingUtilities.invokeLater' to make sure the relationListDialog
+                    // knows about the new relation before we try to select it.
+                    // (Yes, we are already in event dispatch thread. But DatasetEventManager
+                    // uses 'SwingUtilities.invokeLater' to fire events so we have to do
+                    // the same.)
+                    SwingUtilities.invokeLater(new Runnable() {
+                        @Override
+                        public void run() {
+                            Main.map.relationListDialog.selectRelation(relation);
+                            if (Main.pref.getBoolean("multipoly.show-relation-editor", false)) {
+                                //Open relation edit window, if set up in preferences
+                                RelationEditor editor = RelationEditor.getEditor(Main.main.getEditLayer(), relation, null);
+
+                                editor.setModal(true);
+                                editor.setVisible(true);
+                            }
+                        }
+                    });
                 }
             });
