diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2012-11-30 20:21:31 +0400 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2012-11-30 20:21:31 +0400 |
| commit | 89ee4a84be182c7c8cca1399dab7614b809308f5 (patch) | |
| tree | 62b6f85c56863d5b50e52e663fdf21a5a40f73d7 /src/org/fox/ttrss/FeedsActivity.java | |
| parent | 98c4325d8ba74437d667bcad5b5b9ea10a5509ec (diff) | |
save more GlobalState stuff
Diffstat (limited to 'src/org/fox/ttrss/FeedsActivity.java')
| -rw-r--r-- | src/org/fox/ttrss/FeedsActivity.java | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/org/fox/ttrss/FeedsActivity.java b/src/org/fox/ttrss/FeedsActivity.java index 2e44f62b..188bf1f9 100644 --- a/src/org/fox/ttrss/FeedsActivity.java +++ b/src/org/fox/ttrss/FeedsActivity.java @@ -46,9 +46,7 @@ public class FeedsActivity extends OnlineActivity implements HeadlinesEventListe setSmallScreen(findViewById(R.id.headlines_fragment) == null);
- if (isSmallScreen()) {
- GlobalState.getInstance().load(savedInstanceState);
- }
+ GlobalState.getInstance().load(savedInstanceState);
Intent intent = getIntent();
@@ -250,9 +248,7 @@ public class FeedsActivity extends OnlineActivity implements HeadlinesEventListe public void onSaveInstanceState(Bundle out) {
super.onSaveInstanceState(out);
- if (isSmallScreen()) {
- GlobalState.getInstance().save(out);
- }
+ GlobalState.getInstance().save(out);
}
@Override
|