diff options
Diffstat (limited to 'chrome/browser')
-rw-r--r-- | chrome/browser/views/frame/browser_view2.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/chrome/browser/views/frame/browser_view2.cc b/chrome/browser/views/frame/browser_view2.cc index 68a0325..db3eedf 100644 --- a/chrome/browser/views/frame/browser_view2.cc +++ b/chrome/browser/views/frame/browser_view2.cc @@ -478,7 +478,11 @@ void BrowserView2::TabSelectedAt(TabContents* old_contents, // Tell the frame what happened so that the TabContents gets resized, etc. contents_container_->SetTabContents(new_contents); - + // TODO(beng): This should be called automatically by SetTabContents, but I + // am striving for parity now rather than cleanliness. This is + // required to make features like Duplicate Tab, Undo Close Tab, + // etc not result in sad tab. + new_contents->DidBecomeSelected(); if (BrowserList::GetLastActive() == browser_) new_contents->RestoreFocus(); |