Use platform specific preference correctly
This commit is contained in:
parent
718475c010
commit
7ffe13c8b4
@ -605,7 +605,9 @@ var TreeStyleTabUtils = {
|
|||||||
var rulesToSizeScrollbarContents = '';
|
var rulesToSizeScrollbarContents = '';
|
||||||
{
|
{
|
||||||
let OS = Services.appinfo.OS;
|
let OS = Services.appinfo.OS;
|
||||||
let shouldResize = this.getTreePref('tabbar.narrowScrollbar.resize.'+OS) || this.getTreePref('tabbar.narrowScrollbar.resize.default');
|
let shouldResize = this.getTreePref('tabbar.narrowScrollbar.resize.'+OS);
|
||||||
|
if (shouldResize === null)
|
||||||
|
shouldResize = this.getTreePref('tabbar.narrowScrollbar.resize.default');
|
||||||
let scrollbarSize = 0;
|
let scrollbarSize = 0;
|
||||||
if (!shouldResize) {
|
if (!shouldResize) {
|
||||||
let scrollbox = aTabBrowser.tabContainer.mTabstrip._scrollbox;
|
let scrollbox = aTabBrowser.tabContainer.mTabstrip._scrollbox;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user