[Monodevelop-patches-list] r1878 - in trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor: . CodeCompletion

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Thu Jul 1 19:47:11 EDT 2004


Author: tberman
Date: 2004-07-01 19:47:11 -0400 (Thu, 01 Jul 2004)
New Revision: 1878

Modified:
   trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/ChangeLog
   trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/CodeCompletion/CompletionWindow.cs
Log:
fix bug #61020, score.


Modified: trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/ChangeLog
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/ChangeLog	2004-07-01 23:32:59 UTC (rev 1877)
+++ trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/ChangeLog	2004-07-01 23:47:11 UTC (rev 1878)
@@ -1,5 +1,10 @@
 2004-07-01  Todd Berman  <tberman at off.net>
 
+	* CodeCompletion/CompletionWindow.cs: Fix bug #61020, by marking the
+	completion window a transient for the main window.
+
+2004-07-01  Todd Berman  <tberman at off.net>
+
 	* CodeCompletion/CompletionWindow.cs: Sigh, this was an evil bug
 	to let slip, this will work far far better though. Now the completion
 	gui should go away properly.

Modified: trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/CodeCompletion/CompletionWindow.cs
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/CodeCompletion/CompletionWindow.cs	2004-07-01 23:32:59 UTC (rev 1877)
+++ trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/CodeCompletion/CompletionWindow.cs	2004-07-01 23:47:11 UTC (rev 1878)
@@ -12,6 +12,7 @@
 using Gtk;
 using MonoDevelop.SourceEditor.Gui;
 using MonoDevelop.Internal.Project;
+using MonoDevelop.Gui;
 
 namespace MonoDevelop.SourceEditor.CodeCompletion
 {
@@ -215,6 +216,8 @@
 			SkipPagerHint = true;
 			SkipTaskbarHint = true;
 			TypeHint = Gdk.WindowTypeHint.Dialog;
+
+			TransientFor = (Gtk.Window)WorkbenchSingleton.Workbench;
 			
 			store = new Gtk.ListStore (typeof (string), typeof (Gdk.Pixbuf), typeof(ICompletionData));
 			listView = new Gtk.TreeView (store);




More information about the Monodevelop-patches-list mailing list