with Tab Mix Plus, appearance of tabs is broken on the startup

This commit is contained in:
Piro / SHIMODA Hiroshi 2012-02-05 04:15:21 +09:00
parent d02eb93c8a
commit f9daab2ae0

View File

@ -1045,12 +1045,14 @@ TreeStyleTabBrowser.prototype = {
*/
for (let [, node] in Iterator(nodes))
{
node.style.visibility = 'hidden'; // we should hide temporary state!
node.style.position = 'fixed';
}
this.Deferred.wait(0.1).next(function() {
for (let [, node] in Iterator(nodes))
{
node.style.position = '';
node.style.visibility = '';
}
});
}