From: Benjamin Otte Date: Sat, 4 Nov 2017 22:12:46 +0000 (+0100) Subject: gdk: Fix fallback names for the help cursor X-Git-Tag: archive/raspbian/4.4.1+ds1-2+rpi1^2~18^2~23^2~877 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=d092e8dd787a5ed0d4e8a83018d2751fb4e14be2;p=gtk4.git gdk: Fix fallback names for the help cursor --- diff --git a/gdk/wayland/gdkcursor-wayland.c b/gdk/wayland/gdkcursor-wayland.c index 17128d8935..a2ad42b518 100644 --- a/gdk/wayland/gdkcursor-wayland.c +++ b/gdk/wayland/gdkcursor-wayland.c @@ -66,7 +66,7 @@ static const struct { const gchar *css_name, *traditional_name; } name_map[] = { { "default", "left_ptr" }, - { "help", "left_ptr" }, + { "help", "question_arrow" }, { "context-menu", "left_ptr" }, { "pointer", "hand" }, { "progress", "left_ptr_watch" }, diff --git a/gdk/x11/gdkcursor-x11.c b/gdk/x11/gdkcursor-x11.c index 85364d7bf0..90e6020d64 100644 --- a/gdk/x11/gdkcursor-x11.c +++ b/gdk/x11/gdkcursor-x11.c @@ -107,7 +107,7 @@ static const struct { int cursor_glyph; } name_map[] = { { "default", "left_ptr", XC_left_ptr, }, - { "help", "left_ptr", XC_question_arrow }, + { "help", "question_arrow", XC_question_arrow }, { "context-menu", "left_ptr", XC_left_ptr }, { "pointer", "hand", XC_hand1 }, { "progress", "left_ptr_watch", XC_watch },