From c729a0d9eb7129a65f1d54d35e3e0c86d81bcf9a Mon Sep 17 00:00:00 2001 From: Salvatore Larosa Date: Wed, 31 Oct 2012 22:10:47 +0100 Subject: [PATCH] fix for DELETE and BACKSPACE key (it is only an appearance issue) --- python/console_sci.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/console_sci.py b/python/console_sci.py index 83b3c211c92a..e8f0ee8615ba 100755 --- a/python/console_sci.py +++ b/python/console_sci.py @@ -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: