From: Carl Worth Date: Fri, 25 Sep 2009 19:29:38 +0000 (-0700) Subject: Change the default sort for inbox mode to be oldest first. X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;ds=sidebyside;h=68898ee727a02712f6fd94efb489d9b616ef425e;p=sup Change the default sort for inbox mode to be oldest first. This allows for more natural reading of messages in the order they were actually created. --- diff --git a/lib/sup/modes/inbox-mode.rb b/lib/sup/modes/inbox-mode.rb index f347ffb..1cd3b88 100644 --- a/lib/sup/modes/inbox-mode.rb +++ b/lib/sup/modes/inbox-mode.rb @@ -14,7 +14,7 @@ class InboxMode < ThreadIndexMode if !$config[:inbox_newest_first].nil? $config[:inbox_newest_first] else - true + false end end