| Index: third_party/WebKit/Source/devtools/front_end/ui/Toolbar.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/Toolbar.js b/third_party/WebKit/Source/devtools/front_end/ui/Toolbar.js
|
| index bdc958fd25bebadbb62c9b2697b80e5aedb76127..cfc5efd13db88e8f10692ce1cf6437ecc63b37f7 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/Toolbar.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/Toolbar.js
|
| @@ -162,7 +162,7 @@ WebInspector.Toolbar.prototype = {
|
| if (lastSeparator && lastSeparator !== this._items.peekLast())
|
| lastSeparator.setVisible(false);
|
|
|
| - this.element.classList.toggle("hidden", lastSeparator && lastSeparator.visible() && !nonSeparatorVisible);
|
| + this.element.classList.toggle("hidden", !!lastSeparator && lastSeparator.visible() && !nonSeparatorVisible);
|
| }
|
| }
|
|
|
| @@ -964,4 +964,4 @@ WebInspector.ExtensibleToolbar.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.Toolbar.prototype
|
| -}
|
| +}
|
|
|