summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Garnacho <carlosg@gnome.org>2018-11-02 15:52:12 +0100
committerCarlos Garnacho <carlosg@gnome.org>2018-11-02 16:15:02 +0100
commite5dd9b8fbc126a84fe68dd0c19c016fbf026a9b3 (patch)
tree8cb2f5a3cc890816b7fc5d7a6957222f6c994eff
parent83f496229b06f07ee8eda669f6a36a09c691d1b5 (diff)
downloadmutter-wip/carlosg/there-can-be-only-one.tar.gz
wayland: Use default cursor on tablet toolswip/carlosg/there-can-be-only-one
Now that we "replace" the pointer cursor on tablet input, have it use the default cursor so it blends in better.
-rw-r--r--src/wayland/meta-wayland-tablet-tool.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wayland/meta-wayland-tablet-tool.c b/src/wayland/meta-wayland-tablet-tool.c
index 2d2cb2051..83bbaa20e 100644
--- a/src/wayland/meta-wayland-tablet-tool.c
+++ b/src/wayland/meta-wayland-tablet-tool.c
@@ -418,7 +418,7 @@ meta_wayland_tablet_tool_new (MetaWaylandTabletSeat *seat,
tool->focus_surface_destroy_listener.notify = tablet_tool_handle_focus_surface_destroy;
tool->cursor_surface_destroy_listener.notify = tablet_tool_handle_cursor_surface_destroy;
- tool->default_sprite = meta_cursor_sprite_xcursor_new (META_CURSOR_CROSSHAIR);
+ tool->default_sprite = meta_cursor_sprite_xcursor_new (META_CURSOR_DEFAULT);
tool->prepare_at_signal_id =
g_signal_connect (tool->default_sprite, "prepare-at",
G_CALLBACK (tool_cursor_prepare_at), tool);