potential fix for 2.3 tablets
This commit is contained in:
parent
9247e27f96
commit
ebb7bc07bf
@ -1,8 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="org.fox.ttrss"
|
||||
android:versionCode="45"
|
||||
android:versionName="0.3.12" >
|
||||
android:versionCode="46"
|
||||
android:versionName="0.3.13" >
|
||||
|
||||
<uses-sdk android:minSdkVersion="7" />
|
||||
|
||||
|
@ -474,7 +474,7 @@ public class MainActivity extends FragmentActivity implements OnlineServices {
|
||||
height = width;
|
||||
}
|
||||
|
||||
m_smallScreenMode = width < 960 || height < 720;
|
||||
m_smallScreenMode = m_compatMode || (width < 960 || height < 720);
|
||||
|
||||
setContentView(R.layout.main);
|
||||
|
||||
|
@ -130,7 +130,7 @@ public class OfflineActivity extends FragmentActivity implements
|
||||
height = width;
|
||||
}
|
||||
|
||||
m_smallScreenMode = width < 960 || height < 720;
|
||||
m_smallScreenMode = m_compatMode || (width < 960 || height < 720);
|
||||
|
||||
setContentView(R.layout.main);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user