diff options
author | Michael Kolb <kolby@google.com> | 2011-10-13 12:47:11 -0700 |
---|---|---|
committer | Michael Kolb <kolby@google.com> | 2011-10-13 14:39:04 -0700 |
commit | 315d502edce27bb4e93e53134f1a43b8f5c45588 (patch) | |
tree | af9f719da63ff6457d78ab28b138b432708bd5d3 /src/com/android/browser/IntentHandler.java | |
parent | 82f00179fa70ecd0d9fe25f4182d5db8986c11d2 (diff) | |
download | packages_apps_Browser-315d502edce27bb4e93e53134f1a43b8f5c45588.zip packages_apps_Browser-315d502edce27bb4e93e53134f1a43b8f5c45588.tar.gz packages_apps_Browser-315d502edce27bb4e93e53134f1a43b8f5c45588.tar.bz2 |
Reduce size of menus
Bug: 5452031
Change-Id: I3cc638b981e50796293b0f61dac2d93b8e3df1a0
Diffstat (limited to 'src/com/android/browser/IntentHandler.java')
-rw-r--r-- | src/com/android/browser/IntentHandler.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/com/android/browser/IntentHandler.java b/src/com/android/browser/IntentHandler.java index c76197d..e5ddb47 100644 --- a/src/com/android/browser/IntentHandler.java +++ b/src/com/android/browser/IntentHandler.java @@ -32,6 +32,7 @@ import android.speech.RecognizerResultsIntent; import android.text.TextUtils; import android.util.Patterns; +import com.android.browser.UI.ComboViews; import com.android.browser.search.SearchEngine; import com.android.common.Search; import com.android.common.speech.LoggingEvents; @@ -85,7 +86,7 @@ public class IntentHandler { return; } if (BrowserActivity.ACTION_SHOW_BOOKMARKS.equals(action)) { - mController.bookmarksOrHistoryPicker(false); + mController.bookmarksOrHistoryPicker(ComboViews.Bookmarks); return; } |