default overview mode to false in webkit

Browser defaults overview mode to true in BrowserSettings.java,
but a WebView should default overview mode to false. This permits
applications without zoom interfaces, such as HTMLViewer, to
have the same interface as before.
This commit is contained in:
Cary Clark
2009-09-08 13:23:24 -04:00
parent 377c5c15f8
commit f8d4964e45

View File

@@ -187,7 +187,7 @@ public class WebSettings {
private boolean mSupportZoom = true; private boolean mSupportZoom = true;
private boolean mBuiltInZoomControls = false; private boolean mBuiltInZoomControls = false;
private boolean mAllowFileAccess = true; private boolean mAllowFileAccess = true;
private boolean mLoadWithOverviewMode = true; private boolean mLoadWithOverviewMode = false;
// Manages interaction of the system setting 'Location & security - Share // Manages interaction of the system setting 'Location & security - Share
// with Google' and the browser. // with Google' and the browser.