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
This commit is contained in:
@ -804,8 +804,8 @@ gtk_about_dialog_realize (GtkWidget *widget)
|
||||
GTK_WIDGET_CLASS (gtk_about_dialog_parent_class)->realize (widget);
|
||||
|
||||
display = gtk_widget_get_display (widget);
|
||||
priv->hand_cursor = gdk_cursor_new_for_display (display, GDK_HAND2);
|
||||
priv->regular_cursor = gdk_cursor_new_for_display (display, GDK_XTERM);
|
||||
priv->hand_cursor = gdk_cursor_new_from_name (display, "pointer");
|
||||
priv->regular_cursor = gdk_cursor_new_from_name (display, "text");
|
||||
}
|
||||
|
||||
static void
|
||||
|
Reference in New Issue
Block a user