From 94296ec7dfd11617b7331fc400101924e40bf32c Mon Sep 17 00:00:00 2001 From: cketti Date: Sun, 5 Jan 2014 04:16:34 +0100 Subject: [PATCH] Revert "Add work-around for Asus Transformer WebView display bug" This reverts commit 78428e287bae6739b0df9fd9ca78ef7c2daaa893. --- src/com/fsck/k9/view/MessageWebView.java | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/com/fsck/k9/view/MessageWebView.java b/src/com/fsck/k9/view/MessageWebView.java index 897b2d8e4..557e472d6 100644 --- a/src/com/fsck/k9/view/MessageWebView.java +++ b/src/com/fsck/k9/view/MessageWebView.java @@ -179,13 +179,7 @@ public class MessageWebView extends RigidWebView { } content += HtmlConverter.cssStylePre(); content += "" + text + ""; - - // Workaround for asus transformer devices - if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.JELLY_BEAN) { - loadData(content, "text/html; charset=UTF-8", "utf-8"); - } else { - loadDataWithBaseURL("http://", content, "text/html", "utf-8", null); - } + loadDataWithBaseURL("http://", content, "text/html", "utf-8", null); } /*