From 88dcb055a2bb81fa226a9233d7e08fca0bdae805 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 15 Oct 2014 23:45:14 +0400 Subject: disable headlines webview for the time being due to measurement and other issues add feature graphic --- src/org/fox/ttrss/HeadlinesFragment.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/org') diff --git a/src/org/fox/ttrss/HeadlinesFragment.java b/src/org/fox/ttrss/HeadlinesFragment.java index caeba009..66202e3c 100644 --- a/src/org/fox/ttrss/HeadlinesFragment.java +++ b/src/org/fox/ttrss/HeadlinesFragment.java @@ -786,7 +786,7 @@ public class HeadlinesFragment extends Fragment implements OnItemClickListener, String articleContent = article.content != null ? article.content : ""; - if (m_prefs.getBoolean("headlines_full_content", false)) { + /* if (m_prefs.getBoolean("headlines_full_content", false)) { final WebView content = (WebView)v.findViewById(R.id.content); if (content != null) { @@ -858,7 +858,7 @@ public class HeadlinesFragment extends Fragment implements OnItemClickListener, content.loadDataWithBaseURL(baseUrl, articleContent, "text/html", "utf-8", null); } - } else { + } else { */ if (te != null) { if (!m_prefs.getBoolean("headlines_show_content", true)) { te.setVisibility(View.GONE); @@ -872,7 +872,7 @@ public class HeadlinesFragment extends Fragment implements OnItemClickListener, te.setText(excerpt); } } - } + // } String articleAuthor = article.author != null ? article.author : ""; -- cgit v1.2.3