* 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:
Benoît Minisini 2015-08-24 20:56:20 +00:00
parent af9ea5dd82
commit 0ed5209b0b

View file

@ -386,8 +386,13 @@ void MyDrawingArea::clearBackground()
}
else
{
update();
}
#ifndef QT5
XClearArea(QX11Info::display(), winId(), 0, 0, 0, 0, True);
XFlush(QX11Info::display());
#else
update();
#endif
}
}
void MyDrawingArea::resizeEvent(QResizeEvent *e)