fix: drag region BrowserView calculations on macOS (#28984)

This commit is contained in:
Shelley Vohr 2021-05-05 18:37:59 +02:00 коммит произвёл GitHub
Родитель 71c248176b
Коммит e379b455c9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 3 удалений

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

@ -347,9 +347,7 @@ void NativeBrowserViewMac::UpdateDraggableRegions(
std::vector<gfx::Rect> drag_exclude_rects;
if (draggable_regions_.empty()) {
const auto bounds = GetBounds();
drag_exclude_rects.emplace_back(bounds.x(), bounds.y(), webViewWidth,
webViewHeight);
drag_exclude_rects.emplace_back(0, 0, webViewWidth, webViewHeight);
} else {
drag_exclude_rects = CalculateNonDraggableRegions(
DraggableRegionsToSkRegion(draggable_regions_), webViewWidth,