-
Bug
-
Resolution: Done
-
P2: Important
-
None
-
5.4.2
-
None
-
Windows 7, Windows 8
The bottom of the scrollbar is on the border of the widget.
Here a minimal code that reproduces the bug :
#include <QtWidgets//QApplication> #include <QtWidgets/QPlainTextEdit> int main(int argc, char *argv[]) { QApplication a(argc, argv); QPlainTextEdit e; e.insertPlainText("a\na\na\a\na\na\na\na\na\na\na\na\na\na\na\na\na\n"); e.setStyleSheet("QPlainTextEdit{ border: 1px solid black; }"); e.show(); return a.exec(); }