| Index: ui/views/widget/native_widget_aura.cc
|
| diff --git a/ui/views/widget/native_widget_aura.cc b/ui/views/widget/native_widget_aura.cc
|
| index a26e75d7500cfb9cba1fce9101bd3e75b1c9ca92..6861e0e2ac15097685bb7f106675659552321291 100644
|
| --- a/ui/views/widget/native_widget_aura.cc
|
| +++ b/ui/views/widget/native_widget_aura.cc
|
| @@ -457,7 +457,8 @@ void NativeWidgetAura::SetBounds(const gfx::Rect& bounds) {
|
| aura::client::ScreenPositionClient* screen_position_client =
|
| aura::client::GetScreenPositionClient(root);
|
| if (screen_position_client) {
|
| - screen_position_client->SetBounds(window_, bounds);
|
| + gfx::Display dst_display = gfx::Screen::GetDisplayMatching(bounds);
|
| + screen_position_client->SetBounds(window_, bounds, dst_display);
|
| return;
|
| }
|
| }
|
|
|