| Index: third_party/WebKit/Source/devtools/front_end/ui/InspectorView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/InspectorView.js b/third_party/WebKit/Source/devtools/front_end/ui/InspectorView.js
|
| index 077d6c9a2dbf8f882736e2298b17ca7c9c1c8612..fc8cf5fc47619963613449b4828e50158778c808 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/InspectorView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/InspectorView.js
|
| @@ -111,7 +111,11 @@ UI.InspectorView = class extends UI.VBox {
|
| * @return {?UI.ViewLocation}
|
| */
|
| resolveLocation(locationName) {
|
| - return this._drawerTabbedLocation;
|
| + if (locationName === 'drawer-view')
|
| + return this._drawerTabbedLocation;
|
| + if (locationName === 'panel')
|
| + return this._tabbedLocation;
|
| + return null;
|
| }
|
|
|
| createToolbars() {
|
|
|