Use empty origin when only adjusting size

This commit is contained in:
Kevin Sawicki 2016-08-04 12:10:01 -07:00
Родитель 52199a008d
Коммит 7ae9c7616d
1 изменённых файлов: 1 добавлений и 3 удалений

Просмотреть файл

@ -219,9 +219,7 @@ gfx::Point NativeWindow::GetPosition() {
}
void NativeWindow::SetContentSize(const gfx::Size& size, bool animate) {
gfx::Rect bounds = GetContentBounds();
bounds.set_size(size);
SetSize(ContentBoundsToWindowBounds(bounds).size(), animate);
SetSize(ContentBoundsToWindowBounds(gfx::Rect(size)).size(), animate);
}
gfx::Size NativeWindow::GetContentSize() {