about summary refs log tree commit diff stats
path: root/code
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2009-07-18 23:16:00 +0200
committerhut <hut@lavabit.com>2009-07-18 23:16:00 +0200
commitbc44357ac9e50100539025f1cdd802933c403e63 (patch)
treeea13192bdd6b37c501d9ec1046b87235a161fedf /code
parent06d077c641f856021b9a6afbc28d969bd2473ce8 (diff)
downloadranger-bc44357ac9e50100539025f1cdd802933c403e63.tar.gz
fixed bug 14 (sorting didn't always work)
Diffstat (limited to 'code')
-rw-r--r--code/keys.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/keys.rb b/code/keys.rb
index cf585511..3e8c78fd 100644
--- a/code/keys.rb
+++ b/code/keys.rb
@@ -438,7 +438,7 @@ module Fm
 		when /^S(.)$/
 			Option.sort_reverse = $1.ord.between?(65, 90)
 
-			case $1
+			case $1.downcase
 			when 'n'
 				Option.sort = :name
 			when 'e'