about 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 9b877e71..d35a2c48 100644
--- a/ranger/actions.py
+++ b/ranger/actions.py
@@ -43,7 +43,7 @@ class Actions(EnvironmentAware, SettingsAware):
 			if original_order is not None:
 				lst = list(pwd.files)
 				if order == 'size':
-					fnc = lambda item: item.size
+					fnc = lambda item: -item.size
 				elif order == 'mimetype':
 					fnc = lambda item: item.mimetype
 				elif order == 'ctime':