diff options
| author | 2009-06-24 13:54:28 -0700 | |
|---|---|---|
| committer | 2009-06-24 13:54:28 -0700 | |
| commit | 2cf6f5df59d466a729cc10b7688e17cd548a2fda (patch) | |
| tree | cff2cf923c5ea53929c2cde0cbccd7640225fdd7 | |
| parent | b28bf241c56264b915ec3ca0e81256bb1d009aa5 (diff) | |
| parent | 35df87c6319863beed9fd95d0a279e34ff94e92e (diff) | |
Merge change 5238 into donut
* changes:
Fix the weird anchoring of the search dropdown when pivoting into an app for search. (This started when we moved to system process, not sure why then, but we should be getting the dropdown to update at this point regardless.)
| -rw-r--r-- | core/java/android/app/SearchDialog.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/java/android/app/SearchDialog.java b/core/java/android/app/SearchDialog.java index 77fce624c574..6ddf50f0d4a5 100644 --- a/core/java/android/app/SearchDialog.java +++ b/core/java/android/app/SearchDialog.java @@ -1322,6 +1322,7 @@ public class SearchDialog extends Dialog implements OnItemClickListener, OnItemS String query = intent.getStringExtra(SearchManager.QUERY); setUserQuery(query); + mSearchAutoComplete.showDropDown(); } /** |