Details
-
Bug
-
Resolution: Cannot Reproduce
-
P4: Low
-
None
-
5.4.0
-
None
-
Ubuntu 14.04 LTS 64 bit
Description
- Open a long text in a small QPlainTextEdit:
#include <QApplication> #include <QPlainTextEdit> int main(int argc, char *argv[]) { QApplication a(argc, argv); QPlainTextEdit w; w.show(); return a.exec(); }
- Leave the text cursor at the top of the text and scroll the edit down towards the end.
- Remove the focus from the application e.g. by switching to a different application.
Earlier on, the edit would have scrolled all the way up to the position of the cursor. Fortunately we don't have that problem anymore becauseQTBUG-40755was fixed. - Give focus back to the application,
e.g. by clicking its title barby pressing Alt+Tab.
The edit scrolls all the way up to the position of the cursor.
The edit should not move at all when losing or getting focus.
Attachments
Issue Links
- relates to
-
QTBUG-42406 Moving focus out of QPlainTextEdit scrolls the view
-
- Reported
-
- replaces
-
QTBUG-40755 Editor jumps to cursor position when losing focus
-
- Closed
-