Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Switch view_holder flags #19538

Merged
merged 1 commit into from
Jul 6, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions flow/scene_update_context.cc
Original file line number Diff line number Diff line change
Expand Up @@ -233,10 +233,10 @@ void SceneUpdateContext::UpdateScene(int64_t view_id,
FML_DCHECK(view_holder);

view_holder->SetProperties(size.width(), size.height(), 0, 0, 0, 0,
view_holder->hit_testable());
view_holder->focusable());
view_holder->UpdateScene(*this, offset, size,
SkScalarRoundToInt(alphaf() * 255),
view_holder->focusable());
view_holder->hit_testable());
}

void SceneUpdateContext::CreateView(int64_t view_id,
Expand Down