summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--ranger/core/actions.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py
index c8964157..42770156 100644
--- a/ranger/core/actions.py
+++ b/ranger/core/actions.py
@@ -614,7 +614,8 @@ class Actions(FileManagerAware, EnvironmentAware, SettingsAware):
 			return cwd.cycle(forward=forward)
 
 	def set_search_method(self, order, forward=True):
-		if order in ('search', 'tag', 'size', 'mimetype', 'ctime'):
+		if order in ('search', 'tag', 'size', 'mimetype', 'ctime',
+				'mtime', 'atime'):
 			self.search_method = order
 
 	# --------------------------