[Monodevelop-patches-list] r924 - trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Sun Feb 15 22:33:47 EST 2004
Author: tberman
Date: 2004-02-15 22:33:47 -0500 (Sun, 15 Feb 2004)
New Revision: 924
Modified:
trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorView.cs
Log:
fix System. not working correctly, now we get funny placement sometimes
Modified: trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorView.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorView.cs 2004-02-15 21:46:04 UTC (rev 923)
+++ trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorView.cs 2004-02-16 03:33:47 UTC (rev 924)
@@ -93,10 +93,9 @@
//FIXME: ' ' needs to do extra parsing
case ' ':
case '.':
- bool retVal = base.OnKeyPressEvent (ref evnt);
completionWindow = new CompletionWindow (this, ParentEditor.DisplayBinding.ContentName, new CodeCompletionDataProvider ());
completionWindow.ShowCompletionWindow ((char)key);
- return retVal;
+ break;
case '(':
try {
InsightWindow insightWindow = new InsightWindow(this, ParentEditor.DisplayBinding.ContentName);
More information about the Monodevelop-patches-list
mailing list