Commit a1510418 authored by brettw@chromium.org's avatar brettw@chromium.org

Don't move the window when resizing

When the GPU ode resizes the window to make it non-0x0 size, it should not move the window.

BUG=137523

Review URL: https://chromiumcodereview.appspot.com/10829206

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150176 0039d316-1c4b-4281-b951-d872f2087c98
parent e257f418
......@@ -277,7 +277,7 @@ void GpuProcessHostUIShim::OnResizeView(int32 surface_id,
std::max(1, size.width()),
std::max(1, size.height()),
SWP_NOSENDCHANGING | SWP_NOCOPYBITS | SWP_NOZORDER |
SWP_NOACTIVATE | SWP_DEFERERASE);
SWP_NOACTIVATE | SWP_DEFERERASE | SWP_NOMOVE);
#endif
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment