From 62caa5ce7625fdd2afa976a0bed9751a98966475 Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Sat, 23 Oct 2010 18:50:54 +0000 Subject: [PATCH] Experimental change - ask android to try to make columns no wider than the viewport. This change should NOT be backported to 3.2, but I'd like folks to try it with real email. --- src/com/fsck/k9/activity/MessageView.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/com/fsck/k9/activity/MessageView.java b/src/com/fsck/k9/activity/MessageView.java index 80df43c7d..c8fc78335 100644 --- a/src/com/fsck/k9/activity/MessageView.java +++ b/src/com/fsck/k9/activity/MessageView.java @@ -889,6 +889,8 @@ public class MessageView extends K9Activity implements OnClickListener if (K9.mobileOptimizedLayout()) { webSettings.setLayoutAlgorithm(WebSettings.LayoutAlgorithm.SINGLE_COLUMN); + } else { + webSettings.setLayoutAlgorithm(WebSettings.LayoutAlgorithm.NARROW_COLUMNS); } webSettings.setTextSize(mFontSizes.getMessageViewContent());