GtkPrintUnixDialog: Use a better busy cursor

This commit is contained in:
Matthias Clasen 2015-05-07 22:24:19 -04:00
parent eb715c3118
commit 99935b14c6

View File

@ -584,7 +584,11 @@ set_busy_cursor (GtkPrintUnixDialog *dialog,
display = gtk_widget_get_display (widget);
if (busy)
cursor = gdk_cursor_new_for_display (display, GDK_WATCH);
{
cursor = gdk_cursor_new_from_name (display, "left_ptr_watch");
if (cursor == NULL)
cursor = gdk_cursor_new_for_display (display, GDK_WATCH);
}
else
cursor = NULL;