summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--ranger/core/fm.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/ranger/core/fm.py b/ranger/core/fm.py
index 5ab3e5b2..3496f5c9 100644
--- a/ranger/core/fm.py
+++ b/ranger/core/fm.py
@@ -357,11 +357,10 @@ class FM(Actions,  # pylint: disable=too-many-instance-attributes
         try:  # pylint: disable=too-many-nested-blocks
             while True:
                 loader.work()
-                if throbber:
-                    if loader.has_work():
-                        throbber(loader.status)
-                    else:
-                        throbber(remove=True)
+                if loader.has_work():
+                    throbber(loader.status)
+                else:
+                    throbber(remove=True)
 
                 ui.redraw()