[QScintilla] [BUG] blinking caret not hidden on focus out
Yuya Nishihara
yuya at tcha.org
Fri Apr 10 15:41:54 BST 2015
Hi,
QScintilla 2.8.4 doesn't hide blinking caret on focus out. IIRC, it was
hidden on older QScintilla versions.
The following report pointed out that the change in focusOutEvent() caused
this problem.
https://github.com/openscad/openscad/issues/1176
Regards,
# code to reproduce the problem
from PyQt4.QtGui import *
from PyQt4.Qsci import *
app = QApplication([])
w = QWidget()
l = QVBoxLayout(w)
l.addWidget(QLineEdit(w))
l.addWidget(QsciScintilla(w))
w.show()
app.exec_()
More information about the QScintilla
mailing list