summaryrefslogtreecommitdiff
path: root/gtk/gtklinkbutton.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2015-05-09 22:50:02 -0400
committerMatthias Clasen <mclasen@redhat.com>2015-07-26 01:45:06 -0400
commit5c2759af3c602149b76ddf968bcd94b7e6e8a57c (patch)
tree027e6c0ca1ea4ec05f33c5c7cd665c7928f5eb76 /gtk/gtklinkbutton.c
parentb3fb1aefd8b285874b0a744af024a16d3958e402 (diff)
downloadgtk+-5c2759af3c602149b76ddf968bcd94b7e6e8a57c.tar.gz
Use standard cursor names
This changes GTK+ to use gdk_cursor_new_from_name() with the 'standard' css names, instead of GdkCursorType. https://bugzilla.gnome.org/show_bug.cgi?id=652085
Diffstat (limited to 'gtk/gtklinkbutton.c')
-rw-r--r--gtk/gtklinkbutton.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtklinkbutton.c b/gtk/gtklinkbutton.c
index 01177f5c70..8804e11c9a 100644
--- a/gtk/gtklinkbutton.c
+++ b/gtk/gtklinkbutton.c
@@ -298,7 +298,7 @@ set_hand_cursor (GtkWidget *widget,
cursor = NULL;
if (show_hand)
- cursor = gdk_cursor_new_for_display (display, GDK_HAND2);
+ cursor = gdk_cursor_new_from_name (display, "pointer");
gdk_window_set_cursor (gtk_widget_get_window (widget), cursor);
gdk_display_flush (display);