mirror of
https://github.com/brl/mutter.git
synced 2025-07-06 02:49:52 +00:00
backends/x11: Chain up in nested backend cursor renderer
This is missed, leaving the cursor renderer disconnected from the stage updates that could trigger further frame callbacks on the cursor, leaving some clients like Xwayland stuck with cursors. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3025>
This commit is contained in:
@ -84,6 +84,8 @@ meta_cursor_renderer_x11_nested_constructed (GObject *object)
|
|||||||
Cursor empty_xcursor = create_empty_cursor (xdisplay);
|
Cursor empty_xcursor = create_empty_cursor (xdisplay);
|
||||||
XDefineCursor (xdisplay, xwindow, empty_xcursor);
|
XDefineCursor (xdisplay, xwindow, empty_xcursor);
|
||||||
XFreeCursor (xdisplay, empty_xcursor);
|
XFreeCursor (xdisplay, empty_xcursor);
|
||||||
|
|
||||||
|
G_OBJECT_CLASS (meta_cursor_renderer_x11_nested_parent_class)->constructed (object);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
Reference in New Issue
Block a user