Bug 558585 - Window flashes white when a new tab is made, despite settings. r=gavin

This commit is contained in:
Dão Gottwald 2011-05-04 09:29:31 +02:00
Родитель 15704d902a
Коммит db8087d95c
2 изменённых файлов: 6 добавлений и 1 удалений

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

@ -35,7 +35,7 @@
}
tabpanels {
background-color: white;
background-color: transparent;
}
.tab-drop-indicator {

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

@ -2456,6 +2456,11 @@
this.mTabListeners[0] = tabListener;
this.mTabFilters[0] = filter;
this.init();
this.style.backgroundColor =
Services.prefs.getBoolPref("browser.display.use_system_colors") ?
"-moz-default-background-color" :
Services.prefs.getCharPref("browser.display.background_color");
]]>
</constructor>