Details
-
Bug
-
Resolution: Out of scope
-
P3: Somewhat important
-
4.4.3
-
None
Description
In the code below, if one changes composition mode or makes rect non-transparent, everything works fine.
Code to reproduce:
//------------------------------------------
#include <QtGui>
#include <math.h>
class Test : public QWidget
{
public:
Test() : QWidget() {}
~Test() {}
protected:
virtual void paintEvent( QPaintEvent * )
};
int main( int argc, char * argv[] )
{
QApplication app( argc, argv );
Test t;
t.show();
return app.exec();
}
//------------------------------------------