Details
-
Bug
-
Resolution: Cannot Reproduce
-
P2: Important
-
4.2.2
-
None
Description
Reproducible with the following example. In the beginning the 'o' shows correctly, but if the height of the window is increased the 'o' will disappear, and the process will consume more and more memory, before coming to practically complete stop.
The same code using font.setPixelSize(1) works.
#include <QtGui>
class Widget : public QWidget
{
public:
Widget()
{
}
protected:
void paintEvent(QPaintEvent *e)
};
int main(int argc, char **argv)
{
QApplication a( argc, argv );
Widget widget;
widget.resize(125, 50);
widget.show();
return a.exec();
}