[client] x11: call app_invalidateWindow on expose

This commit is contained in:
Geoffrey McRae 2021-07-25 15:30:56 +10:00
parent 60a58d4d8d
commit 3905834807

View File

@ -615,6 +615,12 @@ static int x11EventThread(void * unused)
break;
}
case Expose:
{
app_invalidateWindow();
break;
}
case GenericEvent:
{
XGenericEventCookie *cookie = (XGenericEventCookie*)&xe.xcookie;