From d4246a09762c13fc26d771ad029c89098a4b107b Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Thu, 7 Nov 2013 10:38:35 -0800 Subject: [PATCH] With the new webview scrollview combo we've got loadinoverviewmode seems to behave better. --- src/com/fsck/k9/view/MessageWebView.java | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/com/fsck/k9/view/MessageWebView.java b/src/com/fsck/k9/view/MessageWebView.java index e48220659..557e472d6 100644 --- a/src/com/fsck/k9/view/MessageWebView.java +++ b/src/com/fsck/k9/view/MessageWebView.java @@ -111,12 +111,7 @@ public class MessageWebView extends RigidWebView { webSettings.setBuiltInZoomControls(true); webSettings.setUseWideViewPort(true); if (K9.autofitWidth()) { - // 1% will be smaller than overview, so it effectively - // goes into overview mode. - // Tried the following, neither of which worked: - // webSettings.setLoadWithOverviewMode(true); - // setInitialScale(0); - setInitialScale(1); + webSettings.setLoadWithOverviewMode(true); } disableDisplayZoomControls();