x11-display: Get next serial just before using it
We ask XLib the next request serial number before performing other actions triggered by meta_x11_display_set_input_focus_internal() that doesn't use the request serial anyways. So, just request it before updating the focus window as that's the operation that needs it. https://gitlab.gnome.org/GNOME/mutter/merge_requests/909
This commit is contained in:
parent
efe5bed5b4
commit
ffa0a24848
@ -1937,8 +1937,8 @@ meta_x11_display_set_input_focus_xwindow (MetaX11Display *x11_display,
|
||||
if (meta_display_timestamp_too_old (x11_display->display, ×tamp))
|
||||
return;
|
||||
|
||||
serial = XNextRequest (x11_display->xdisplay);
|
||||
meta_x11_display_set_input_focus_internal (x11_display, window, timestamp);
|
||||
serial = XNextRequest (x11_display->xdisplay);
|
||||
meta_x11_display_update_focus_window (x11_display, window, serial, TRUE);
|
||||
meta_display_update_focus_window (x11_display->display, NULL);
|
||||
meta_display_remove_autoraise_callback (x11_display->display);
|
||||
|
Loading…
Reference in New Issue
Block a user