From d0f132ee6474a8e3ea617a55f841e3c0e0e03c97 Mon Sep 17 00:00:00 2001 From: dell Date: Sun, 12 Nov 2023 23:45:24 +0700 Subject: [PATCH] sysprof: use "pointer" cursor instead of "hand" https://gitlab.gnome.org/GNOME/adwaita-icon-theme/-/issues/251 --- src/sysprof/sysprof-flame-graph.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sysprof/sysprof-flame-graph.c b/src/sysprof/sysprof-flame-graph.c index af85e350..3e2dea8d 100644 --- a/src/sysprof/sysprof-flame-graph.c +++ b/src/sysprof/sysprof-flame-graph.c @@ -365,7 +365,7 @@ sysprof_flame_graph_set_motion (SysprofFlameGraph *self, { self->under_pointer = rect; - gtk_widget_set_cursor_from_name (GTK_WIDGET (self), rect ? "hand" : NULL); + gtk_widget_set_cursor_from_name (GTK_WIDGET (self), rect ? "pointer" : NULL); } gtk_widget_queue_draw (GTK_WIDGET (self));