summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-09-02 19:22:17 +0400
committerAndrew Dolgov <[email protected]>2012-09-02 19:22:17 +0400
commit1f831645ee32aaffc3611e2c15a7df2339302031 (patch)
treecce3fba80e5b54eb2252de79db067b9d2a9c9dd3 /src
parent416d155e85ec4fbc2562c804beec7a70a06f72e7 (diff)
use small tablet mode on screens <9"
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 f514290b..e497eb52 100644
--- a/src/org/fox/ttrss/CommonActivity.java
+++ b/src/org/fox/ttrss/CommonActivity.java
@@ -41,7 +41,7 @@ public class CommonActivity extends FragmentActivity {
float inDiag = FloatMath.sqrt(inHeight * inHeight + inWidth * inWidth);
- if (inDiag < 8) {
+ if (inDiag < 9) {
m_smallTablet = true;
}