potential fix for 2.3 tablets

This commit is contained in:
Andrew Dolgov 2012-01-04 20:51:01 +03:00
parent 9247e27f96
commit ebb7bc07bf
3 changed files with 4 additions and 4 deletions

View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.fox.ttrss" package="org.fox.ttrss"
android:versionCode="45" android:versionCode="46"
android:versionName="0.3.12" > android:versionName="0.3.13" >
<uses-sdk android:minSdkVersion="7" /> <uses-sdk android:minSdkVersion="7" />

View File

@ -474,7 +474,7 @@ public class MainActivity extends FragmentActivity implements OnlineServices {
height = width; height = width;
} }
m_smallScreenMode = width < 960 || height < 720; m_smallScreenMode = m_compatMode || (width < 960 || height < 720);
setContentView(R.layout.main); setContentView(R.layout.main);

View File

@ -130,7 +130,7 @@ public class OfflineActivity extends FragmentActivity implements
height = width; height = width;
} }
m_smallScreenMode = width < 960 || height < 720; m_smallScreenMode = m_compatMode || (width < 960 || height < 720);
setContentView(R.layout.main); setContentView(R.layout.main);