From f98f57a7814d659bded9d20259bc5f65c667a153 Mon Sep 17 00:00:00 2001
From: Nick Schermer <nick@xfce.org>
Date: Fri, 30 Nov 2012 20:52:20 +0100
Subject: [PATCH] Hide spinner when there's no activity (bug #9563).

---
 thunar/thunar-window.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/thunar/thunar-window.c b/thunar/thunar-window.c
index ce7a315f2..58a8ecd2a 100644
--- a/thunar/thunar-window.c
+++ b/thunar/thunar-window.c
@@ -789,8 +789,8 @@ thunar_window_init (ThunarWindow *window)
   /* place the spinner into the menu item */
   window->spinner = gtk_spinner_new ();
   gtk_container_add (GTK_CONTAINER (item), window->spinner);
-  gtk_widget_set_size_request (window->spinner, 16, 16);
-  gtk_widget_show (window->spinner);
+  exo_binding_new (G_OBJECT (window->spinner), "active",
+                   G_OBJECT (window->spinner), "visible");
 
   /* check if we need to add the root warning */
   if (G_UNLIKELY (geteuid () == 0))
-- 
GitLab