You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (g.NavWindowingTarget && g.NavInputSource == ImGuiInputSource_Gamepad)
13804
13804
{
13805
-
// Highlight only appears after a brief time holding the button, so that a fast tap on ImGuiKey_NavGamepadMenu (to toggle NavLayer) doesn't add visual noise
13806
-
// However inputs are accepted immediately, so you press ImGuiKey_NavGamepadMenu + L1/R1 fast.
const int focus_change_dir = (int)IsKeyPressed(ImGuiKey_GamepadL1) - (int)IsKeyPressed(ImGuiKey_GamepadR1);
13811
-
if (focus_change_dir != 0 && !just_started_windowing_from_null_focus)
13805
+
if (g.ConfigNavWindowingWithGamepad)
13812
13806
{
13813
-
NavUpdateWindowingTarget(focus_change_dir);
13814
-
g.NavWindowingHighlightAlpha = 1.0f;
13807
+
// Highlight only appears after a brief time holding the button, so that a fast tap on ImGuiKey_NavGamepadMenu (to toggle NavLayer) doesn't add visual noise
13808
+
// However inputs are accepted immediately, so you press ImGuiKey_NavGamepadMenu + L1/R1 fast.
g.NavWindowingToggleLayer &= (g.NavWindowingHighlightAlpha < 1.0f); // Once button was held long enough we don't consider it a tap-to-toggle-layer press anymore.
13821
13825
if (g.NavWindowingToggleLayer && g.NavWindow)
13822
13826
apply_toggle_layer = true;
13823
-
else if (!g.NavWindowingToggleLayer)
13827
+
else if (!g.NavWindowingToggleLayer && g.ConfigNavWindowingWithGamepad)
IM_ASSERT(shared_mods != 0); // Next/Prev shortcut currently needs a shared modifier to "hold", otherwise Prev actions would keep cycling between two windows.
Copy file name to clipboardexpand all lines: imgui_internal.h
+1
Original file line number
Diff line number
Diff line change
@@ -2240,6 +2240,7 @@ struct ImGuiContext
2240
2240
bool NavJustMovedToHasSelectionData; // Copy of move result's ItemFlags & ImGuiItemFlags_HasSelectionUserData). Maybe we should just store ImGuiNavItemData.
2241
2241
2242
2242
// Navigation: Windowing (CTRL+TAB for list, or Menu button + keys or directional pads to move/resize)
2243
+
bool ConfigNavWindowingWithGamepad; // = true. Enable CTRL+TAB by holding ImGuiKey_GamepadFaceLeft (== ImGuiKey_NavGamepadMenu). When false, the button may still be used to toggle Menu layer.
2243
2244
ImGuiKeyChord ConfigNavWindowingKeyNext; // = ImGuiMod_Ctrl | ImGuiKey_Tab (or ImGuiMod_Super | ImGuiKey_Tab on OS X). For reconfiguration (see #4828)
2244
2245
ImGuiKeyChord ConfigNavWindowingKeyPrev; // = ImGuiMod_Ctrl | ImGuiMod_Shift | ImGuiKey_Tab (or ImGuiMod_Super | ImGuiMod_Shift | ImGuiKey_Tab on OS X)
2245
2246
ImGuiWindow* NavWindowingTarget; // Target window when doing CTRL+Tab (or Pad Menu + FocusPrev/Next), this window is temporarily displayed top-most!
0 commit comments