Chromium Code Reviews| Index: third_party/WebKit/Source/devtools/front_end/console/ConsoleView.js |
| diff --git a/third_party/WebKit/Source/devtools/front_end/console/ConsoleView.js b/third_party/WebKit/Source/devtools/front_end/console/ConsoleView.js |
| index 0d134561edf094872a51bd9f15e6f1421e81614d..18c0a7c8636c899a82e3144d22f5da64caaa360c 100644 |
| --- a/third_party/WebKit/Source/devtools/front_end/console/ConsoleView.js |
| +++ b/third_party/WebKit/Source/devtools/front_end/console/ConsoleView.js |
| @@ -266,7 +266,7 @@ WebInspector.ConsoleView.prototype = { |
| targetAdded: function(target) |
| { |
| this._viewport.invalidate(); |
| - if (WebInspector.targetManager.targets().length > 1 && WebInspector.targetManager.mainTarget().isPage()) |
| + if (WebInspector.targetManager.targets().length > 1 && WebInspector.targetManager.mainTarget().hasBrowserDomains()) |
|
dgozman
2016/07/12 00:34:11
This logic is wrong. We should show the checkbox i
eostroukhov-old
2016/07/12 21:46:15
Done.
|
| this._showAllMessagesCheckbox.element.classList.toggle("hidden", false); |
| }, |