eric6/QScintilla/Editor.py

changeset 7261
3ead033becb8
parent 7229
53054eb5b15a
child 7267
aedc309827c7
diff -r 4cc6f121119a -r 3ead033becb8 eric6/QScintilla/Editor.py
--- a/eric6/QScintilla/Editor.py	Mon Sep 23 20:03:20 2019 +0200
+++ b/eric6/QScintilla/Editor.py	Tue Sep 24 18:42:25 2019 +0200
@@ -6767,8 +6767,9 @@
         
         @param event the event object (QFocusEvent)
         """
-        self.vm.editorActGrp.setEnabled(False)
-        self.setCaretWidth(0)
+        if not self.callTipsVisible():
+            self.vm.editorActGrp.setEnabled(False)
+            self.setCaretWidth(0)
         
         super(Editor, self).focusOutEvent(event)
         

eric ide

mercurial