Skip to content
This repository has been archived by the owner on Feb 8, 2018. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
2003-03-24 Martin Baulig <martin@ximian.com>
	* frontends/gui/debugger.glade: Disable the popup menu in the
	code-browser-notebook.

	* frontends/gui/SourceList.cs: Embed the setting of the contents
	in BeginNotUndoableAction()/EndNotUndoableAction().

	* frontends/gui/ProgramToDebug.cs: Don't make the dialog modal and
	don't use Dialog.Run().

svn path=/trunk/debugger/; revision=12780
  • Loading branch information
Martin Baulig committed Mar 24, 2003
1 parent f2225ac commit fe4f6fd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions ChangeLog
@@ -1,5 +1,11 @@
2003-03-24 Martin Baulig <martin@ximian.com>

* frontends/gui/debugger.glade: Disable the popup menu in the
code-browser-notebook.

* frontends/gui/SourceList.cs: Embed the setting of the contents
in BeginNotUndoableAction()/EndNotUndoableAction().

* frontends/gui/ProgramToDebug.cs: Don't make the dialog modal and
don't use Dialog.Run().

Expand Down
2 changes: 2 additions & 0 deletions frontends/gui/SourceList.cs
Expand Up @@ -48,7 +48,9 @@ public SourceList (SourceManager manager, string filename, string contents)
//
// Load contents
//
text_buffer.BeginNotUndoableAction ();
text_buffer.Text = contents;
text_buffer.EndNotUndoableAction ();
}

void button_pressed (object obj, ButtonPressEventArgs args)
Expand Down
2 changes: 1 addition & 1 deletion frontends/gui/debugger.glade
Expand Up @@ -398,7 +398,7 @@
<property name="scrollable">True</property>
<property name="tab_hborder">2</property>
<property name="tab_vborder">2</property>
<property name="enable_popup">True</property>
<property name="enable_popup">False</property>

<child>
<widget class="GtkHBox" id="hbox3">
Expand Down

0 comments on commit fe4f6fd

Please sign in to comment.