Details
-
Bug
-
Resolution: Out of scope
-
P3: Somewhat important
-
4.3.1
-
None
Description
The following example shows some suboptimal flickering and even widgets overlapping each other and getting clipped.
#include <QtGui>
class Widget : public QWidget
{
public:
Widget()
protected:
void timerEvent(QTimerEvent *e)
{
if (e->timerId() == timerid)
QWidget::timerEvent(e);
}
private:
int timerid;
QComboBox *cbox;
};
int main(int argc, char **argv)
{
QApplication app(argc, argv);
Widget w;
w.show();
return app.exec();
}