Hide colorful tabs stack correctly

This commit is contained in:
YUKI Hiroshi 2016-09-05 15:47:30 +09:00
parent a15761253f
commit ace80ba0fc

View File

@ -352,7 +352,7 @@ TreeStyleTabWindowHelper.overrideExtensionsAfterBrowserInit = function TSTWH_ove
colorfulTabs.__treestyletab__show_ctStack = colorfulTabs.show_ctStack; colorfulTabs.__treestyletab__show_ctStack = colorfulTabs.show_ctStack;
colorfulTabs.show_ctStack = function(...aArgs) { colorfulTabs.show_ctStack = function(...aArgs) {
if (gBrowser.treeStyleTab.position != 'top') if (gBrowser.treeStyleTab.position != 'top')
return document.getElementById('colorfulTabsStack').style.display = 'none'; return document.getElementById('colorfulTabsStack').style.setProperty('display', 'none', 'important');
return this.__treestyletab__show_ctStack(...aArgs); return this.__treestyletab__show_ctStack(...aArgs);
}; };
} }