]> git.cworth.org Git - sup/commitdiff
Change the default sort for inbox mode to be oldest first.
authorCarl Worth <cworth@cworth.org>
Fri, 25 Sep 2009 19:29:38 +0000 (12:29 -0700)
committerCarl Worth <cworth@cworth.org>
Fri, 25 Sep 2009 19:29:38 +0000 (12:29 -0700)
This allows for more natural reading of messages in the order
they were actually created.

lib/sup/modes/inbox-mode.rb

index f347ffb9cc19f0f1f812f50a2d8ccb263de5f494..1cd3b88c02811482ef375023953ff5b7713662b7 100644 (file)
@@ -14,7 +14,7 @@ class InboxMode < ThreadIndexMode
     if !$config[:inbox_newest_first].nil?
       $config[:inbox_newest_first]
     else
-      true
+      false
     end
   end