Details
-
Bug
-
Resolution: Done
-
P2: Important
-
4.7.4
-
None
-
Distributor ID: Ubuntu
Description: Ubuntu 11.10
Release: 11.10
Codename: oneiric
Qt: 4.7.4
Description
After typing any Arabic text, I need to press TAB twice to have it jump on screen, and with multiple tabs the text disappears altogether! Actually it's there somewhere but it seems it goes out of the window margin to the right behind the curtain . Maximizing the window size would show the hidden text.
A simple snippet that generates the problem goes like this:
{
QApplication app (argc, argv);
QTextEdit *text = new QTextEdit;
text->setPlainText(QObject::trUtf8("ض\t\t\t\tظ"));
text->show();
return app.exec();
}