[gtk+] places view: Use names for cursors



commit 2188fe0e54a886cb597e9bb316a55ed2fed6861f
Author: Matthias Clasen <mclasen redhat com>
Date:   Sat Dec 5 19:18:27 2015 -0500

    places view: Use names for cursors
    
    Use the standard name for the busy+interactive cursor.

 gtk/gtkplacesview.c |    6 +-----
 1 files changed, 1 insertions(+), 5 deletions(-)
---
diff --git a/gtk/gtkplacesview.c b/gtk/gtkplacesview.c
index ecb6c3b..011334b 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;
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]