summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2012-10-18 16:50:15 +0200
committerhut <hut@lavabit.com>2012-11-09 23:31:12 +0100
commit3ac379cab918a0b1e5d171c7acb41775724e22fd (patch)
tree275dacc00269ab899d2e66e580f21c349df092c1
parent0760b062b9f6822adddd815b7451775f8e54dc05 (diff)
downloadranger-3ac379cab918a0b1e5d171c7acb41775724e22fd.tar.gz
core.actions: fixed cm/ca keys
-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
 
 	# --------------------------