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)
13805
+
if ((g.NavWindowingTarget || g.NavWindowingToggleLayer) && g.NavWindowingInputSource == ImGuiInputSource_Gamepad)
13804
13806
{
13805
-
if (g.ConfigNavWindowingWithGamepad)
13807
+
if (g.NavWindowingTarget != NULL)
13806
13808
{
13807
13809
// 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
13810
// 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.
13825
13827
if (g.NavWindowingToggleLayer && g.NavWindow)
13826
13828
apply_toggle_layer = true;
13827
-
else if (!g.NavWindowingToggleLayer && g.ConfigNavWindowingWithGamepad)
13829
+
else if (!g.NavWindowingToggleLayer)
13828
13830
apply_focus_window = g.NavWindowingTarget;
13829
13831
g.NavWindowingTarget = NULL;
13832
+
g.NavWindowingToggleLayer = false;
13830
13833
}
13831
13834
}
13832
13835
13833
13836
// Keyboard: Focus
13834
-
if (g.NavWindowingTarget && g.NavInputSource == ImGuiInputSource_Keyboard)
13837
+
if (g.NavWindowingTarget && g.NavWindowingInputSource == ImGuiInputSource_Keyboard)
13835
13838
{
13836
13839
// Visuals only appears after a brief time after pressing TAB the first time, so that a fast CTRL+TAB doesn't add visual noise
0 commit comments