From 2ee5b49cf2acec29196bd02cc697d620526f9c86 Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Mon, 19 Jul 2010 01:54:38 +0000 Subject: [PATCH] When marking a message as read as we're opening it from the message list, don't "bother" sorting the messagelist again before opening the message, it adds a _bit_ of slowness when we don't need it and we'll sort again when we get back to the message list. --- src/com/fsck/k9/activity/MessageList.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/com/fsck/k9/activity/MessageList.java b/src/com/fsck/k9/activity/MessageList.java index 41037ded8..c04319144 100644 --- a/src/com/fsck/k9/activity/MessageList.java +++ b/src/com/fsck/k9/activity/MessageList.java @@ -830,7 +830,6 @@ public class MessageList if (!message.read) { message.read = true; - mHandler.sortMessages(); } }