summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2014-10-15 21:08:49 +0400
committerAndrew Dolgov <[email protected]>2014-10-15 21:09:08 +0400
commiteae22a4771070ee5a79b1dd0976eb2a211f0dad0 (patch)
treeb7d3538456a4553a0e9690ed2311efc61cd9ecd0 /src
parent7cd1d630f9cf0392b4d763224bef3ce6ab42ae56 (diff)
fix bug caused by new default theme
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 47adbb1c..bfe70708 100644
--- a/src/org/fox/ttrss/CommonActivity.java
+++ b/src/org/fox/ttrss/CommonActivity.java
@@ -125,7 +125,7 @@ public class CommonActivity extends ActionBarActivity {
if (savedInstanceState != null) {
m_theme = savedInstanceState.getString("theme");
} else {
- m_theme = m_prefs.getString("theme", "THEME_DARK");
+ m_theme = m_prefs.getString("theme", CommonActivity.THEME_DEFAULT);
}
initDatabase();