summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-04-04 10:42:09 +0400
committerAndrew Dolgov <[email protected]>2013-04-04 10:42:09 +0400
commit25aa63dce35f85cf10e7f44604be03f4bb692064 (patch)
tree0a549161b60d3d42582251886b6ee96c1a134078 /src
parent22302be4f9e5f28a13bdbe7fbbd58f9d3f7ca194 (diff)
show_unread_only: change default to true
Diffstat (limited to 'src')
-rw-r--r--src/org/fox/ttrss/CommonActivity.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/fox/ttrss/CommonActivity.java b/src/org/fox/ttrss/CommonActivity.java
index 885f2266..a01c7966 100644
--- a/src/org/fox/ttrss/CommonActivity.java
+++ b/src/org/fox/ttrss/CommonActivity.java
@@ -36,7 +36,7 @@ public class CommonActivity extends FragmentActivity {
}
public boolean getUnreadOnly() {
- return m_prefs.getBoolean("show_unread_only", false);
+ return m_prefs.getBoolean("show_unread_only", true);
}
public void setUnreadOnly(boolean unread) {