diff options
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/browser/browser.cc | 3 | ||||
-rw-r--r-- | chrome/browser/views/frame/browser_view2.cc | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/chrome/browser/browser.cc b/chrome/browser/browser.cc index 016b43b..77f1628 100644 --- a/chrome/browser/browser.cc +++ b/chrome/browser/browser.cc @@ -908,8 +908,7 @@ void Browser::WindowMoved() { DCHECK(!g_browser_process->IsUsingNewFrames()); // Cancel any tabstrip animations, some of them may be invalidated by the // window being repositioned. - // Comment out for one cycle to see if this fixes dist tests. - //window_->GetTabStrip()->DestroyDragController(); + window_->GetTabStrip()->DestroyDragController(); GetStatusBubble()->Reposition(); diff --git a/chrome/browser/views/frame/browser_view2.cc b/chrome/browser/views/frame/browser_view2.cc index 7081665..9b3534b 100644 --- a/chrome/browser/views/frame/browser_view2.cc +++ b/chrome/browser/views/frame/browser_view2.cc @@ -116,8 +116,7 @@ BrowserView2::~BrowserView2() { void BrowserView2::WindowMoved() { // Cancel any tabstrip animations, some of them may be invalidated by the // window being repositioned. - // Comment out for one cycle to see if this fixes dist tests. - //tabstrip_->DestroyDragController(); + tabstrip_->DestroyDragController(); status_bubble_->Reposition(); |