Fixed an issue in the editor related to resetting a syntax error marker.

Wed, 18 Dec 2013 08:46:27 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Wed, 18 Dec 2013 08:46:27 +0100
changeset 3149
e98100461710
parent 3147
2ca92de36c23
child 3150
42a8d3b5bd57

Fixed an issue in the editor related to resetting a syntax error marker.

QScintilla/Editor.py file | annotate | diff | comparison | revisions
--- a/QScintilla/Editor.py	Mon Dec 16 19:29:58 2013 +0100
+++ b/QScintilla/Editor.py	Wed Dec 18 08:46:27 2013 +0100
@@ -5365,6 +5365,9 @@
             line = self.markerLine(handle) + 1
             self.toggleSyntaxError(line, 0, False)
         
+        self.syntaxerrors = {}
+        self.syntaxerrorToggled.emit(self)
+    
     def __showSyntaxError(self, line=-1):
         """
         Private slot to handle the 'Show syntax error message'

eric ide

mercurial