mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-02-10 15:58:06 +00:00
ipc: Fix NULL check stopping main app visibility events from working
This commit is contained in:
parent
d4c2feab05
commit
e554f9ee02
|
@ -2,6 +2,7 @@
|
||||||
- mr.754
|
- mr.754
|
||||||
- mr.768
|
- mr.768
|
||||||
- mr.800
|
- mr.800
|
||||||
|
- mr.846
|
||||||
---
|
---
|
||||||
Now that there is a interface that allows the compositor to support
|
Now that there is a interface that allows the compositor to support
|
||||||
multi-client rendering use that instead of doing our own rendering.
|
multi-client rendering use that instead of doing our own rendering.
|
||||||
|
|
|
@ -525,8 +525,8 @@ handle_overlay_client_events(volatile struct ipc_client_state *ics, int active_i
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Does this client have a compositor yet?
|
// Does this client have a compositor yet, if not return?
|
||||||
if (ics->xc) {
|
if (ics->xc == NULL) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue