[GB.QT4]
* BUG: Revert change from r7227 to see if it fixes Karl Reinl's problems. git-svn-id: svn://localhost/gambas/trunk@7236 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
parent
af9ea5dd82
commit
0ed5209b0b
1 changed files with 7 additions and 2 deletions
|
@ -386,8 +386,13 @@ void MyDrawingArea::clearBackground()
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
update();
|
#ifndef QT5
|
||||||
}
|
XClearArea(QX11Info::display(), winId(), 0, 0, 0, 0, True);
|
||||||
|
XFlush(QX11Info::display());
|
||||||
|
#else
|
||||||
|
update();
|
||||||
|
#endif
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void MyDrawingArea::resizeEvent(QResizeEvent *e)
|
void MyDrawingArea::resizeEvent(QResizeEvent *e)
|
||||||
|
|
Loading…
Reference in a new issue