commit | 3ba455394dd3413b6246f00d2bf2083547862735 | [log] [tgz] |
---|---|---|
author | John Reck <jreck@google.com> | Thu Aug 11 16:26:53 2011 -0700 |
committer | John Reck <jreck@google.com> | Thu Aug 11 16:26:53 2011 -0700 |
tree | 45456b6ded454a3a3ac2336dc53dccc395d438e0 | |
parent | e3da7d615be4710da92a79e6ed70dc1982deda4c [diff] [blame] |
Don't hide the navscreen when going to bookmarks Bug: 5144826 Change-Id: If810b3d82c52265f841954f295f5974af9807a01
diff --git a/src/com/android/browser/BaseUi.java b/src/com/android/browser/BaseUi.java index 372f2a9..f92368e 100644 --- a/src/com/android/browser/BaseUi.java +++ b/src/com/android/browser/BaseUi.java
@@ -558,7 +558,7 @@ } @Override - public boolean showsWeb() { + public boolean isWebShowing() { return mCustomView == null; } @@ -841,4 +841,10 @@ } } }; + + @Override + public void showWeb(boolean animate) { + mUiController.hideCustomView(); + } + }