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

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Tue Jun 22 02:49:52 EDT 2004


Author: tberman
Date: 2004-06-22 02:49:52 -0400 (Tue, 22 Jun 2004)
New Revision: 1805

Modified:
   trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/ChangeLog
   trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/CodeCompletion/CompletionWindow.cs
Log:
fix bug


Modified: trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/ChangeLog
===================================================================
--- trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/ChangeLog	2004-06-22 03:28:54 UTC (rev 1804)
+++ trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/ChangeLog	2004-06-22 06:49:52 UTC (rev 1805)
@@ -1,3 +1,9 @@
+2004-06-22  Todd Berman  <tberman at off.net>
+
+	* CodeCompletion/CompletionWindow.cs: Changed from Destroy to
+	this LostFocusListView inside ShuffleSelection. I don't think this
+	introduces any undo bugs.
+
 2004-06-21  Todd Berman  <tberman at off.net>
 
 	* Gui/SourceEditorView.cs:

Modified: trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/CodeCompletion/CompletionWindow.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/CodeCompletion/CompletionWindow.cs	2004-06-22 03:28:54 UTC (rev 1804)
+++ trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/CodeCompletion/CompletionWindow.cs	2004-06-22 06:49:52 UTC (rev 1805)
@@ -198,7 +198,7 @@
 				listView.ScrollToCell (path, null, false, 0, 0);
 				if (magic && numOfHits == 1) {
 					ActivateItem (null, null);
-					Destroy ();
+					LostFocusListView (null, null);
 					return true;
 				}
 			}




More information about the Monodevelop-patches-list mailing list