1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Because we're not reusing the message view, we don't need to force scrolling. This has the side effect of cutting down on a momentary flash of message header area on display.

This commit is contained in:
Jesse Vincent 2013-02-05 12:26:16 -05:00
parent 69da9bdd7a
commit 0b04e526b4

View File

@ -628,7 +628,6 @@ public class SingleMessageView extends LinearLayout implements OnClickListener,
mAccessibleMessageContentView.loadDataWithBaseURL("http://", emailText, contentType, "utf-8", null);
} else {
mMessageContentView.setText(emailText, contentType);
mMessageContentView.scrollTo(0, 0);
}
}