| Index: chrome/browser/views/tabs/dragged_tab_controller.cc
|
| ===================================================================
|
| --- chrome/browser/views/tabs/dragged_tab_controller.cc (revision 6401)
|
| +++ chrome/browser/views/tabs/dragged_tab_controller.cc (working copy)
|
| @@ -1134,8 +1134,12 @@
|
| // detach even though we aren't attached to a TabStrip. Guard against that.
|
| if (attached_tabstrip_) {
|
| Tab* tab = GetTabMatchingDraggedContents(attached_tabstrip_);
|
| - if (tab)
|
| + if (tab) {
|
| tab->SetVisible(true);
|
| + // Paint the tab now, otherwise there may be slight flicker between the
|
| + // time the dragged tab window is destroyed and we paint.
|
| + tab->PaintNow();
|
| + }
|
| }
|
| CleanUpHiddenFrame();
|
|
|
|
|