diff options
author | Matthias Clasen <mclasen@redhat.com> | 2015-05-09 22:50:02 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2015-07-26 01:45:06 -0400 |
commit | 5c2759af3c602149b76ddf968bcd94b7e6e8a57c (patch) | |
tree | 027e6c0ca1ea4ec05f33c5c7cd665c7928f5eb76 /gtk/gtkprintunixdialog.c | |
parent | b3fb1aefd8b285874b0a744af024a16d3958e402 (diff) | |
download | gtk+-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/gtkprintunixdialog.c')
-rw-r--r-- | gtk/gtkprintunixdialog.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gtk/gtkprintunixdialog.c b/gtk/gtkprintunixdialog.c index fe7f6f09c9..3f7d6eb908 100644 --- a/gtk/gtkprintunixdialog.c +++ b/gtk/gtkprintunixdialog.c @@ -584,11 +584,7 @@ set_busy_cursor (GtkPrintUnixDialog *dialog, display = gtk_widget_get_display (widget); if (busy) - { - cursor = gdk_cursor_new_from_name (display, "left_ptr_watch"); - if (cursor == NULL) - cursor = gdk_cursor_new_for_display (display, GDK_WATCH); - } + cursor = gdk_cursor_new_from_name (display, "progress"); else cursor = NULL; |