summaryrefslogtreecommitdiffstats
path: root/src/com
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2011-06-24 13:12:11 -0700
committerJohn Reck <jreck@google.com>2011-06-24 13:12:11 -0700
commit686a9d9d928c031d49aa63478de947bf25994dc3 (patch)
treedc5528037269bc2a9842b6df5c320b1f0a207fdd /src/com
parentf7b45bc4344aec44506ac0fa0a1517148ba8a2cb (diff)
downloadpackages_apps_Browser-686a9d9d928c031d49aa63478de947bf25994dc3.zip
packages_apps_Browser-686a9d9d928c031d49aa63478de947bf25994dc3.tar.gz
packages_apps_Browser-686a9d9d928c031d49aa63478de947bf25994dc3.tar.bz2
Fix title bar bug
Prevent hiding the title bar while loading Change-Id: I969060b4bcb9132f76f758831ddd931b2a22b194
Diffstat (limited to 'src/com')
-rw-r--r--src/com/android/browser/BaseUi.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/browser/BaseUi.java b/src/com/android/browser/BaseUi.java
index ad45958..bcb18f1 100644
--- a/src/com/android/browser/BaseUi.java
+++ b/src/com/android/browser/BaseUi.java
@@ -872,7 +872,7 @@ public abstract class BaseUi implements UI, WebViewFactory, ScrollListener {
} else if (visibleTitleHeight == getTitleBar().getEmbeddedHeight()
&& mHandler.hasMessages(MSG_HIDE_TITLEBAR)) {
mHandler.removeMessages(MSG_HIDE_TITLEBAR);
- hideTitleBar();
+ suggestHideTitleBar();
}
} else if (scrollY > mLastScrollY) {
mLastScrollY = scrollY;