| Index: third_party/WebKit/Source/devtools/front_end/ui/TabbedPane.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/TabbedPane.js b/third_party/WebKit/Source/devtools/front_end/ui/TabbedPane.js
|
| index 6ae72638a847c6cbb7c83f58bfaf0805b213fd3d..9dfcfdd74806c486ef0e8e9f57ecaafc950fa3d3 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/TabbedPane.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/TabbedPane.js
|
| @@ -145,10 +145,12 @@ WebInspector.TabbedPane.prototype = {
|
|
|
| focus: function()
|
| {
|
| - if (this.visibleView)
|
| + if (this.visibleView) {
|
| this.visibleView.focus();
|
| - else
|
| + } else {
|
| this.contentElement.focus();
|
| + this.wasFocused();
|
| + }
|
| },
|
|
|
| /**
|
|
|