diff options
author | Michael Kolb <kolby@google.com> | 2011-08-18 17:19:53 -0700 |
---|---|---|
committer | Michael Kolb <kolby@google.com> | 2011-08-18 17:19:53 -0700 |
commit | 59e232c77d354839fd5fc8d6fcfcd968e4f1497a (patch) | |
tree | 3f236f06c1898df0005939c23c7efd01e92847ea /src/com | |
parent | 5bb316b3239dca8ff4dc2f9007cc6567feed12ca (diff) | |
download | packages_apps_Browser-59e232c77d354839fd5fc8d6fcfcd968e4f1497a.zip packages_apps_Browser-59e232c77d354839fd5fc8d6fcfcd968e4f1497a.tar.gz packages_apps_Browser-59e232c77d354839fd5fc8d6fcfcd968e4f1497a.tar.bz2 |
Show web content before handling new intent
Bug: 5184826
hide nav screen before handling new intent
Change-Id: I7d6b17f71bb45c05917a4d2346368f0f0188b5f5
Diffstat (limited to 'src/com')
-rw-r--r-- | src/com/android/browser/Controller.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/com/android/browser/Controller.java b/src/com/android/browser/Controller.java index 551be38..19ad9a9 100644 --- a/src/com/android/browser/Controller.java +++ b/src/com/android/browser/Controller.java @@ -601,6 +601,9 @@ public class Controller @Override public void handleNewIntent(Intent intent) { + if (!mUi.isWebShowing()) { + mUi.showWeb(false); + } mIntentHandler.onNewIntent(intent); } |