mirror of
https://github.com/brl/mutter.git
synced 2024-11-08 23:16:20 -05:00
wayland: Update tablet cursor outputs across cursor/proximity changes
Make sure those generic surface events are sent early on when setting a cursor for any tablet tool, so clients can update to output characteristics. https://gitlab.gnome.org/GNOME/mutter/merge_requests/545 Related: https://gitlab.gnome.org/GNOME/gtk/issues/1675
This commit is contained in:
parent
e5881156f6
commit
1da0355528
@ -115,13 +115,24 @@ meta_wayland_tablet_tool_set_cursor_surface (MetaWaylandTabletTool *tool,
|
||||
return;
|
||||
|
||||
if (tool->cursor_surface)
|
||||
{
|
||||
MetaWaylandCursorSurface *cursor_surface;
|
||||
|
||||
cursor_surface = META_WAYLAND_CURSOR_SURFACE (tool->cursor_surface->role);
|
||||
meta_wayland_cursor_surface_set_renderer (cursor_surface, NULL);
|
||||
|
||||
meta_wayland_surface_update_outputs (tool->cursor_surface);
|
||||
wl_list_remove (&tool->cursor_surface_destroy_listener.link);
|
||||
}
|
||||
|
||||
tool->cursor_surface = surface;
|
||||
|
||||
if (tool->cursor_surface)
|
||||
{
|
||||
meta_wayland_surface_update_outputs (tool->cursor_surface);
|
||||
wl_resource_add_destroy_listener (tool->cursor_surface->resource,
|
||||
&tool->cursor_surface_destroy_listener);
|
||||
}
|
||||
|
||||
meta_wayland_tablet_tool_update_cursor_surface (tool);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user