[Monodevelop-patches-list] r2216 - trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/Gui
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Mon Jan 31 18:57:55 EST 2005
Author: jluke
Date: 2005-01-31 18:57:55 -0500 (Mon, 31 Jan 2005)
New Revision: 2216
Modified:
trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorBuffer.cs
Log:
fix more
Modified: trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorBuffer.cs
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorBuffer.cs 2005-01-31 23:50:13 UTC (rev 2215)
+++ trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorBuffer.cs 2005-01-31 23:57:55 UTC (rev 2216)
@@ -91,7 +91,6 @@
if (underlineErrors) {
points = new ArrayList ();
ps.ParseInformationChanged += (ParseInformationEventHandler) Runtime.DispatchService.GuiDispatch (new ParseInformationEventHandler (ParseChanged));
- GLib.Timeout.Add (75, new GLib.TimeoutHandler (DrawErrors));
}
else {
ps.ParseInformationChanged -= (ParseInformationEventHandler) Runtime.DispatchService.GuiDispatch (new ParseInformationEventHandler (ParseChanged));
@@ -140,6 +139,7 @@
else {
points.Clear ();
}
+ DrawErrors ();
}
}
}
More information about the Monodevelop-patches-list
mailing list