From 2188fe0e54a886cb597e9bb316a55ed2fed6861f Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sat, 5 Dec 2015 19:18:27 -0500 Subject: [PATCH] places view: Use names for cursors Use the standard name for the busy+interactive cursor. --- gtk/gtkplacesview.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/gtk/gtkplacesview.c b/gtk/gtkplacesview.c index ecb6c3b311..011334b803 100644 --- a/gtk/gtkplacesview.c +++ b/gtk/gtkplacesview.c @@ -330,11 +330,7 @@ set_busy_cursor (GtkPlacesView *view, 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;