Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main/src/core/MonoDevelop.Ide/ChangeLog5
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/CustomExecutionModeDialog.cs2
2 files changed, 6 insertions, 1 deletions
diff --git a/main/src/core/MonoDevelop.Ide/ChangeLog b/main/src/core/MonoDevelop.Ide/ChangeLog
index f26772d602..fc47b412af 100644
--- a/main/src/core/MonoDevelop.Ide/ChangeLog
+++ b/main/src/core/MonoDevelop.Ide/ChangeLog
@@ -1,3 +1,8 @@
+2009-10-30 Mike Kestner <mkestner@novell.com>
+
+ * MonoDevelop.Ide.Gui.Dialogs/CustomExecutionModeDialog.cs:
+ add existing editor to dictionary instead of creating a new one.
+
2009-10-29 Lluis Sanchez Gual <lluis@novell.com>
* MonoDevelop.Ide.Execution/IExecutionCommandCustomizer.cs:
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/CustomExecutionModeDialog.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/CustomExecutionModeDialog.cs
index 47d1c3e368..90e4528139 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/CustomExecutionModeDialog.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Dialogs/CustomExecutionModeDialog.cs
@@ -119,7 +119,7 @@ namespace MonoDevelop.Ide.Gui.Dialogs
ParameterizedExecutionHandler handler = mode.ExecutionHandler as ParameterizedExecutionHandler;
if (handler != null) {
IExecutionConfigurationEditor e = handler.CreateEditor ();
- currentEditors.Add (mode, handler.CreateEditor ());
+ currentEditors.Add (mode, e);
object cdata;
if (!oldData.TryGetValue (mode, out cdata))
cdata = data.Data;