diff options
| author | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2012-06-25 14:26:02 +0400 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2012-06-25 14:26:02 +0400 |
| commit | 6262231fe1af0a382ed0b527d0e13d8ca72082ea (patch) | |
| tree | 9a1b3fd13f6b99651c4935f5c50a9ddef770bb83 /src/org/fox/ttrss/MainActivity.java | |
| parent | d4c8ea58bbfee21bdb0c1de4e992afa567322dd1 (diff) | |
display list navigation in xlarge-portrait mode similar to small screen
mode
Diffstat (limited to 'src/org/fox/ttrss/MainActivity.java')
| -rw-r--r-- | src/org/fox/ttrss/MainActivity.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/fox/ttrss/MainActivity.java b/src/org/fox/ttrss/MainActivity.java index 7903a1eb..d7dbb195 100644 --- a/src/org/fox/ttrss/MainActivity.java +++ b/src/org/fox/ttrss/MainActivity.java @@ -1428,7 +1428,7 @@ public class MainActivity extends CommonActivity implements OnlineServices { m_navigationAdapter.clear(); - if (m_activeCategory != null || (m_activeFeed != null && isSmallScreen())) { + if (m_activeCategory != null || (m_activeFeed != null && (isSmallScreen() || getOrientation() % 2 != 0))) { getActionBar().setDisplayShowTitleEnabled(false); getActionBar().setNavigationMode(ActionBar.NAVIGATION_MODE_LIST); |