Skip to content

Commit 7ef96b3

Browse files
committed
Fix UI being unnavigable
1 parent eaa2f76 commit 7ef96b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rendering/vulkan_imgui.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -719,7 +719,7 @@ void RND_Renderer::ImGuiOverlay::DrawHelpMenu() {
719719

720720
bool shouldStayOpen = true;
721721

722-
if (ImGui::Begin("BetterVR Settings & Help##Settings", &shouldStayOpen, ImGuiWindowFlags_NoNav | ImGuiWindowFlags_NoCollapse | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoMove)) {
722+
if (ImGui::Begin("BetterVR Settings & Help##Settings", &shouldStayOpen, ImGuiWindowFlags_NoNavFocus | ImGuiWindowFlags_NoCollapse | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoMove)) {
723723
bool changed = false;
724724

725725
ImGui::Indent(10.0f);

0 commit comments

Comments
 (0)