I'm just going to raise problems as I find them, rather than save them up for a mega post ...
I'm having a few problems with QTextBrowser widgets. Simplifying the sample code to:
Code:
from qt.core import (QTextBrowser, QTextCursor, QTextEdit)
self.browser = QTextBrowser()
self.browser.setLineWrapMode(QTextEdit.NoWrap)
self.browser.setLineWrapMode(QTextEdit.WidgetWidth)
self.browser.moveCursor(QTextCursor.End)
self.browser.moveCursor(QTextCursor.StartOfLine)
I get AttributeError for missing QTextEdit/QTextCursor constants(???) when I try to use any of the last 4 lines. They all work OK in standard v5.34