Bug 928439 - Show HelperApp pageaction for selected tab only [r=wesj]

This commit is contained in:
Matt Brubeck 2013-10-18 10:25:20 -07:00
Родитель afa0b510fc
Коммит f36b9f2deb
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -3582,7 +3582,8 @@ Tab.prototype = {
}
// Show page actions for helper apps.
HelperApps.updatePageAction(this.browser.currentURI);
if (BrowserApp.selectedTab == this)
HelperApps.updatePageAction(this.browser.currentURI);
if (!Reader.isEnabledForParseOnLoad)
return;