1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-16 06:25:06 -05:00

Fix an extra paren

This commit is contained in:
Jesse Vincent 2010-11-03 00:48:18 +00:00
parent b9999878df
commit fb55aa5bfb

View File

@ -228,7 +228,7 @@ public class Prefs extends K9PreferenceActivity
mZoomControlsEnabled.setChecked(K9.zoomControlsEnabled()); mZoomControlsEnabled.setChecked(K9.zoomControlsEnabled());
mMobileOptimizedLayout = (CheckBoxPreference) findPreference(PREFERENCE_MESSAGEVIEW_MOBILE_LAYOUT); mMobileOptimizedLayout = (CheckBoxPreference) findPreference(PREFERENCE_MESSAGEVIEW_MOBILE_LAYOUT);
if (Integer.parseInt(Build.VERSION.SDK) <= 7 ) { if (Integer.parseInt(Build.VERSION.SDK) <= 7 )
{ {
mMobileOptimizedLayout.setEnabled(false); mMobileOptimizedLayout.setEnabled(false);
} }