1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-12-17 21:32:26 -05:00

"Preferences" -> "Settings" for consistency

This commit is contained in:
Jesse Vincent 2010-10-11 14:54:23 +00:00
parent c5d68fb49d
commit d07aca3008
3 changed files with 5 additions and 5 deletions

View File

@ -116,7 +116,7 @@
<string name="reverse_sort_action">Reverse sort</string> <string name="reverse_sort_action">Reverse sort</string>
<string name="about_action">About</string> <string name="about_action">About</string>
<string name="prefs_title">Preferences</string> <string name="prefs_title">Settings</string>
<string name="accounts_context_menu_title">Account options</string> <string name="accounts_context_menu_title">Account options</string>
<string name="folder_context_menu_title">Folder options</string> <string name="folder_context_menu_title">Folder options</string>

View File

@ -155,7 +155,7 @@ public class K9 extends Application
private static boolean mMeasureAccounts = true; private static boolean mMeasureAccounts = true;
private static boolean mCountSearchMessages = true; private static boolean mCountSearchMessages = true;
private static boolean mZoomControlsEnabled = false; private static boolean mZoomControlsEnabled = false;
private static boolean mMobileOptimizedLayout = false; private static boolean mMobileOptimizedLayout = false;
private static boolean useGalleryBugWorkaround = false; private static boolean useGalleryBugWorkaround = false;
private static boolean galleryBuggy; private static boolean galleryBuggy;

View File

@ -880,11 +880,11 @@ public class MessageView extends K9Activity implements OnClickListener
webSettings.setSupportZoom(true); webSettings.setSupportZoom(true);
webSettings.setLoadsImagesAutomatically(true); webSettings.setLoadsImagesAutomatically(true);
if (K9.zoomControlsEnabled()) if (K9.zoomControlsEnabled())
{ {
webSettings.setBuiltInZoomControls(true); webSettings.setBuiltInZoomControls(true);
} }
if (K9.mobileOptimizedLayout()) if (K9.mobileOptimizedLayout())
{ {
webSettings.setLayoutAlgorithm(WebSettings.LayoutAlgorithm.SINGLE_COLUMN); webSettings.setLayoutAlgorithm(WebSettings.LayoutAlgorithm.SINGLE_COLUMN);
} }