places view: Use names for cursors

Use the standard name for the busy+interactive cursor.
This commit is contained in:
Matthias Clasen 2015-12-05 19:18:27 -05:00
parent f76fa0411f
commit 2188fe0e54

View File

@ -330,11 +330,7 @@ set_busy_cursor (GtkPlacesView *view,
display = gtk_widget_get_display (widget); display = gtk_widget_get_display (widget);
if (busy) if (busy)
{ cursor = gdk_cursor_new_from_name (display, "progress");
cursor = gdk_cursor_new_from_name (display, "left_ptr_watch");
if (cursor == NULL)
cursor = gdk_cursor_new_for_display (display, GDK_WATCH);
}
else else
cursor = NULL; cursor = NULL;