From 949b1032a9bba447b12fd42e81e7ae14aa641814 Mon Sep 17 00:00:00 2001 From: Wes Kocher Date: Thu, 3 Aug 2017 18:42:02 -0700 Subject: [PATCH] Backed out changeset 4c8cc6044599 (bug 1382570) because it might have caused the spike in browser_page_action_menu.js failures a=backout CLOSED TREE MozReview-Commit-ID: HCTskH7e4RF --- browser/base/content/browser-places.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/browser/base/content/browser-places.js b/browser/base/content/browser-places.js index b1b0a4843380..4e750bc53fff 100644 --- a/browser/base/content/browser-places.js +++ b/browser/base/content/browser-places.js @@ -1962,8 +1962,8 @@ var BookmarkingUI = { }, onStarCommand(aEvent) { - // Ignore non-left clicks on the star, or if we are updating its state. - if (!this._pendingUpdate && aEvent.button == 0) { + // Ignore clicks on the star if we are updating its state. + if (!this._pendingUpdate) { let isBookmarked = this._itemGuids.size > 0; // Disable the old animation in photon if (!isBookmarked && !AppConstants.MOZ_PHOTON_THEME)