Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Fix resize drag handles placed behind the window (#854)
Browse files Browse the repository at this point in the history
  • Loading branch information
MortimerGoro authored and bluemarvin committed Nov 27, 2018
1 parent dcb38f3 commit 9cf66ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/cpp/Widget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ Widget::StartResize() {
}
vrb::CreationContextPtr create = render->GetRenderThreadCreationContext();
m.resizer = WidgetResizer::Create(create, m.quad->GetWorldMin(), m.quad->GetWorldMax());
m.transform->InsertNode(m.resizer->GetRoot(), 1);
m.transform->InsertNode(m.resizer->GetRoot(), 0);
}
m.resizing = true;
m.resizer->ToggleVisible(true);
Expand Down

0 comments on commit 9cf66ae

Please sign in to comment.