summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--ranger/actions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/actions.py b/ranger/actions.py
index 74946885..f773a79b 100644
--- a/ranger/actions.py
+++ b/ranger/actions.py
@@ -55,7 +55,7 @@ class Actions(EnvironmentAware, SettingsAware):
 
 		elif order in ('size', 'mimetype', 'ctime'):
 			pwd = self.env.pwd
-			if original_order is not None:
+			if original_order is not None or not pwd.cycle_list:
 				lst = list(pwd.files)
 				if order == 'size':
 					fnc = lambda item: -item.size