From f4bab4272788f4c7f4afe6dda56c73e268d18ce7 Mon Sep 17 00:00:00 2001 From: Wes Johnston Date: Wed, 1 Oct 2014 14:15:00 -0700 Subject: [PATCH] Bug 1073776 - "Tapping on urlbar after performing search shows URL, not search term" [r=margaret.leibovic] --- mobile/android/chrome/content/browser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/android/chrome/content/browser.js b/mobile/android/chrome/content/browser.js index 626429ae3df7..0b8c21da0271 100644 --- a/mobile/android/chrome/content/browser.js +++ b/mobile/android/chrome/content/browser.js @@ -1629,7 +1629,7 @@ var BrowserApp = { // This event refers to a search via the URL bar, not a bookmarks // keyword search. Note that this code assumes that the user can only // perform a keyword search on the selected tab. - this.isSearch = true; + this.selectedTab.isSearch = true; // Don't store queries in private browsing mode. let isPrivate = PrivateBrowsingUtils.isBrowserPrivate(this.selectedTab.browser);