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:
@@ -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.
|
||||||
|
|||||||
Reference in New Issue
Block a user