Details
-
Bug
-
Resolution: Out of scope
-
P3: Somewhat important
-
4.6.2
-
None
-
Debian GNU/Linux squeeze, gcc 4.4.3
Description
I wrote a small test program:
#include <QApplication> #include <QPlainTextEdit> int main(int argc, char ** argv) { QApplication app( argc, argv ); QPlainTextEdit p; p.setPlainText("any text"); p.setTextInteractionFlags(Qt::TextEditable); p.show(); return app.exec(); }
With flag Qt::TextEditable i can select text by mouse. But I did not set the flag Qt::TextSelectableByMouse! Perhaps this flag is not resetted.