Skip to content

Commit

Permalink
Merge from 3.x: PR #4631
Browse files Browse the repository at this point in the history
Fixes #4619
  • Loading branch information
ccordoba12 committed Jun 21, 2017
2 parents ce1363f + 4237eaf commit 5c76f57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spyder/widgets/sourcecode/codeeditor.py
Original file line number Diff line number Diff line change
Expand Up @@ -2416,7 +2416,7 @@ def setup_context_menu(self):
def keyReleaseEvent(self, event):
"""Override Qt method."""
self.timer_syntax_highlight.start()
super(CodeEditor, self).keyPressEvent(event)
super(CodeEditor, self).keyReleaseEvent(event)

def keyPressEvent(self, event):
"""Reimplement Qt method"""
Expand Down

0 comments on commit 5c76f57

Please sign in to comment.