From 747f6f55836ea4b016a83e7b3a4ff79f2f021b0b Mon Sep 17 00:00:00 2001 From: qurious-pixel <62252937+qurious-pixel@users.noreply.github.com> Date: Wed, 1 Jun 2022 09:29:28 -0700 Subject: [PATCH] Add Tooltip of new functionality Tooltip: Allows controller navigation of the menu bar D-pad to move between items, A to select, and X to grab focus on the menu bar --- libultraship/libultraship/SohImGuiImpl.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libultraship/libultraship/SohImGuiImpl.cpp b/libultraship/libultraship/SohImGuiImpl.cpp index 59b79abc8..bc3224941 100644 --- a/libultraship/libultraship/SohImGuiImpl.cpp +++ b/libultraship/libultraship/SohImGuiImpl.cpp @@ -727,13 +727,14 @@ namespace SohImGui { { ImGuiIO& io = ImGui::GetIO(); ImGui::CheckboxFlags("Use Controller Navigation", &io.ConfigFlags, ImGuiConfigFlags_NavEnableGamepad); - + Tooltip("Allows controller navigation of the menu bar\nD-pad to move between items, A to select, and X to grab focus on the menu bar"); + ImGui::Separator(); EnhancementCheckbox("D-pad Support on Pause and File Select", "gDpadPauseName"); EnhancementCheckbox("D-pad Support in Ocarina and Text Choice", "gDpadOcarinaText"); EnhancementCheckbox("D-pad Support for Browsing Shop Items", "gDpadShop"); - + ImGui::Separator(); EnhancementCheckbox("Show Inputs", "gInputEnabled");