mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-12-23 22:31:46 +00:00
[client] x11: call app_invalidateWindow
on expose
This commit is contained in:
parent
60a58d4d8d
commit
3905834807
1 changed files with 6 additions and 0 deletions
|
@ -615,6 +615,12 @@ static int x11EventThread(void * unused)
|
|||
break;
|
||||
}
|
||||
|
||||
case Expose:
|
||||
{
|
||||
app_invalidateWindow();
|
||||
break;
|
||||
}
|
||||
|
||||
case GenericEvent:
|
||||
{
|
||||
XGenericEventCookie *cookie = (XGenericEventCookie*)&xe.xcookie;
|
||||
|
|
Loading…
Reference in a new issue