Details
-
Bug
-
Resolution: Out of scope
-
P3: Somewhat important
-
4.3.4
-
None
Description
On Windows, when adding text containing unicode characters to a Q3ListView column header, then some unicode characters may be clipped either at the top or bottom.
The following example reproduces the problem. Try pasting "ॐFrraaccttuurree Llaatteerraalतॣ" to the example's line edit. The last character will be clipped near the bottom, so the bottom part cannot be seen:
#include <QtGui>
#include <Qt3Support>
class Widget : public QWidget
{
Q_OBJECT
public:
Widget()
public slots:
void testSlot(const QString &string)
private:
Q3ListView *widget;
QLineEdit *edit;
};
#include "main.moc"
int main(int argc, char **argv)
{
QApplication app(argc, argv);
Widget widget;
widget.show();
return app.exec();
}