summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2014-10-15 23:45:14 +0400
committerAndrew Dolgov <[email protected]>2014-10-15 23:45:14 +0400
commit88dcb055a2bb81fa226a9233d7e08fca0bdae805 (patch)
tree399a8885347f75ad4c49f2890be339ad6d9173d2 /src
parenta88c49c633c4fd81ba0d31182944f3145efaa99a (diff)
disable headlines webview for the time being due to measurement and
other issues add feature graphic
Diffstat (limited to 'src')
-rw-r--r--src/org/fox/ttrss/HeadlinesFragment.java6
1 files changed, 3 insertions, 3 deletions
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 : "";