Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
5.14.0, 6.2.0
-
Windows 10
Windows 10 Pro x64
Description
The editor hides blank lines. When new lines are added, the line number only increases, and all added lines are not displayed.
Minimal Qt Example:
#include <QApplication> #include <QPlainTextEdit> int main(int argc, char *argv[]) { QApplication a(argc, argv); QFont font("DejaVu Sans"); QPlainTextEdit edit; edit.setFont(font); edit.setPlainText("test\n\ntest\n"); edit.show(); return a.exec(); }