fix: draggable regions shouldn't capture clicks on frames windows (#37594)
This commit is contained in:
parent
b72f81ab5b
commit
4c6092e151
1 changed files with 3 additions and 0 deletions
|
@ -1988,6 +1988,9 @@ void WebContents::MessageHost(const std::string& channel,
|
||||||
|
|
||||||
void WebContents::UpdateDraggableRegions(
|
void WebContents::UpdateDraggableRegions(
|
||||||
std::vector<mojom::DraggableRegionPtr> regions) {
|
std::vector<mojom::DraggableRegionPtr> regions) {
|
||||||
|
if (owner_window() && owner_window()->has_frame())
|
||||||
|
return;
|
||||||
|
|
||||||
draggable_region_ = DraggableRegionsToSkRegion(regions);
|
draggable_region_ = DraggableRegionsToSkRegion(regions);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue