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:
authorJeffrey Stedfast <jeff@xamarin.com>2012-01-17 00:24:46 +0400
committerJeffrey Stedfast <jeff@xamarin.com>2012-01-17 00:24:46 +0400
commit40da6a9dd5002e37c2144fc5dcd59750a5997ed3 (patch)
treef91e55a6e6a26c8d1bcf3dcc1de6e9dbac031226 /main/src/addins/MonoDevelop.Debugger/gtk-gui
parentecba42122b2aeab032de64b64a06101a9a8b284f (diff)
[Debugger] D'oh, fixed logic for loading Breakpoints
Diffstat (limited to 'main/src/addins/MonoDevelop.Debugger/gtk-gui')
-rw-r--r--main/src/addins/MonoDevelop.Debugger/gtk-gui/MonoDevelop.Debugger.BreakpointPropertiesDialog.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/main/src/addins/MonoDevelop.Debugger/gtk-gui/MonoDevelop.Debugger.BreakpointPropertiesDialog.cs b/main/src/addins/MonoDevelop.Debugger/gtk-gui/MonoDevelop.Debugger.BreakpointPropertiesDialog.cs
index 4e88dc4eaf..aa01db53f0 100644
--- a/main/src/addins/MonoDevelop.Debugger/gtk-gui/MonoDevelop.Debugger.BreakpointPropertiesDialog.cs
+++ b/main/src/addins/MonoDevelop.Debugger/gtk-gui/MonoDevelop.Debugger.BreakpointPropertiesDialog.cs
@@ -211,6 +211,7 @@ namespace MonoDevelop.Debugger
this.radioBreakAlways = new global::Gtk.RadioButton (global::Mono.Unix.Catalog.GetString ("Always break"));
this.radioBreakAlways.CanFocus = true;
this.radioBreakAlways.Name = "radioBreakAlways";
+ this.radioBreakAlways.Active = true;
this.radioBreakAlways.DrawIndicator = true;
this.radioBreakAlways.UseUnderline = true;
this.radioBreakAlways.Group = new global::GLib.SList (global::System.IntPtr.Zero);
@@ -368,6 +369,7 @@ namespace MonoDevelop.Debugger
this.radioActionBreak = new global::Gtk.RadioButton (global::Mono.Unix.Catalog.GetString ("Break"));
this.radioActionBreak.CanFocus = true;
this.radioActionBreak.Name = "radioActionBreak";
+ this.radioActionBreak.Active = true;
this.radioActionBreak.DrawIndicator = true;
this.radioActionBreak.UseUnderline = true;
this.radioActionBreak.Group = new global::GLib.SList (global::System.IntPtr.Zero);