Skip to content

Commit

Permalink
Roomscale: Easier option to see visually
Browse files Browse the repository at this point in the history
  • Loading branch information
praydog committed Aug 19, 2023
1 parent 776fbea commit 9a347a2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/mods/VR.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2021,7 +2021,12 @@ void VR::on_draw_ui() {
ImGui::TreePop();
}

m_roomscale_movement->draw("Roomscale Movement");
ImGui::SetNextItemOpen(true, ImGuiCond_::ImGuiCond_Once);
if (ImGui::TreeNode("Roomscale Movement")) {
m_roomscale_movement->draw("Enabled");

ImGui::TreePop();
}

ImGui::SetNextItemOpen(true, ImGuiCond_::ImGuiCond_Once);
if (ImGui::TreeNode("Decoupled Pitch")) {
Expand Down

0 comments on commit 9a347a2

Please sign in to comment.