summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Mike LeBeau <mlebeau@android.com> 2009-06-24 13:06:39 -0700
committer Mike LeBeau <mlebeau@android.com> 2009-06-24 13:06:39 -0700
commit35df87c6319863beed9fd95d0a279e34ff94e92e (patch)
treef3794634634ab77c526cd1b98fc0666579d1f31b
parent6f8e592347d463044b7dd8999588840cec6e956e (diff)
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.java1
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();
}
/**