Skip to content

Commit

Permalink
fix for DELETE and BACKSPACE key
Browse files Browse the repository at this point in the history
(it is only an appearance issue)
  • Loading branch information
slarosa committed Oct 31, 2012
1 parent 676b37e commit c729a0d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions python/console_sci.py
Expand Up @@ -393,6 +393,7 @@ def keyPressEvent(self, e):
# fix the cursor position
self.insert( cmd[:3-newindex] + " " )
self.setCursorPosition(line, 4)
self.recolor()

elif e.modifiers() & (Qt.ControlModifier | Qt.MetaModifier) and \
e.key() == Qt.Key_V:
Expand Down

0 comments on commit c729a0d

Please sign in to comment.