On 10/04/2015 3:41 pm, Yuya Nishihara wrote:
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_()

Should be fixed in tonight's snapshot.

Thanks,
Phil
_______________________________________________
QScintilla mailing list
[email protected]
http://www.riverbankcomputing.com/mailman/listinfo/qscintilla

Reply via email to