x11/window: Do not try to compare a wayland active window with X11
If a window sends a configure stacking request, we were comparing the active window with the event window even though they were different client types (e.g. wayland and x11). This was leading to a critical error, so let's handle this by ensuring that the active window is of the same kind of the event window before doing x11-specific checks. Behaving as different applications in case.
This commit is contained in:
parent
1a87e8e09b
commit
a951c097dd
1 changed files with 3 additions and 2 deletions
|
@ -2861,8 +2861,9 @@ meta_window_x11_configure_request (MetaWindow *window,
|
|||
window->desc);
|
||||
}
|
||||
else if (active_window &&
|
||||
!meta_window_x11_same_application (window, active_window) &&
|
||||
!meta_window_same_client (window, active_window) &&
|
||||
(active_window->client_type != window->client_type ||
|
||||
(!meta_window_x11_same_application (window, active_window) &&
|
||||
!meta_window_same_client (window, active_window))) &&
|
||||
XSERVER_TIME_IS_BEFORE (window->net_wm_user_time,
|
||||
active_window->net_wm_user_time))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue