From d092e8dd787a5ed0d4e8a83018d2751fb4e14be2 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Sat, 4 Nov 2017 23:12:46 +0100 Subject: [PATCH] gdk: Fix fallback names for the help cursor --- gdk/wayland/gdkcursor-wayland.c | 2 +- gdk/x11/gdkcursor-x11.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 },