-
Bug
-
Resolution: Out of scope
-
Not Evaluated
-
None
-
5.6.0 Alpha, 5.6.0 Beta
-
None
-
Windows 7
Rendering looks pretty bad if opacity graphics effect is applied and scaled factor is non integer.
Sample:
//set non integer scale factor
qputenv("QT_SCALE_FACTOR", QByteArray("1.5"));
QWidget mainWindget;
QLabel label(&mainWindget);
label.setText("Sample Test");
label.setGraphicsEffect(new QGraphicsOpacityEffect(&label));
mainWindget.show();