Details
-
Bug
-
Resolution: Out of scope
-
P3: Somewhat important
-
4.4.0
-
None
Description
With the following code, it is not possible to move the cursor after the horizontal line, and type in text.
Also when hitting enter it inserts a new horizontal line.
It would be expected that it would be possible to hit enter and only get a new line, without a horizontal line.
Also that it would be possible to type something after the horizontal line.
#include <QtGui>
#include <QDebug>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QTextEdit edit;
edit.show();
edit.setHtml("<html><body> <hr width=\"100%\"> </body></html>");
return app.exec();
}