Skip to content

Commit a26fcf5

Browse files
committed
Nav: fixed assertion when holding gamepad FaceLeft/West button + pressing a keyboard key. (#8525)
1 parent 8bbdfef commit a26fcf5

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

docs/CHANGELOG.txt

+2
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ Other changes:
5252
codepath that preserve last contents size when collapsed, resulting in
5353
programmatically uncollapsing auto-sizing windows having them flicker size
5454
for a frame. (#7691) [@achabense]
55+
- Nav: fixed assertion when holding gamepad FaceLeft/West button to open
56+
CTRL+Tab windowing + pressing a keyboard key. (#8525)
5557
- Error Handling: added better error report and recovery for extraneous
5658
EndPopup() call. (#1651, #8499)
5759
- Style, InputText: added ImGuiCol_InputTextCursor to configure color of

imgui.cpp

+11-8
Original file line numberDiff line numberDiff line change
@@ -4020,6 +4020,7 @@ ImGuiContext::ImGuiContext(ImFontAtlas* shared_font_atlas)
40204020
ConfigNavWindowingKeyNext = IO.ConfigMacOSXBehaviors ? (ImGuiMod_Super | ImGuiKey_Tab) : (ImGuiMod_Ctrl | ImGuiKey_Tab);
40214021
ConfigNavWindowingKeyPrev = IO.ConfigMacOSXBehaviors ? (ImGuiMod_Super | ImGuiMod_Shift | ImGuiKey_Tab) : (ImGuiMod_Ctrl | ImGuiMod_Shift | ImGuiKey_Tab);
40224022
NavWindowingTarget = NavWindowingTargetAnim = NavWindowingListWindow = NULL;
4023+
NavWindowingInputSource = ImGuiInputSource_None;
40234024
NavWindowingTimer = NavWindowingHighlightAlpha = 0.0f;
40244025
NavWindowingToggleLayer = false;
40254026
NavWindowingToggleKey = ImGuiKey_None;
@@ -13786,11 +13787,12 @@ static void ImGui::NavUpdateWindowing()
1378613787
if (start_windowing_with_gamepad || start_windowing_with_keyboard)
1378713788
if (ImGuiWindow* window = g.NavWindow ? g.NavWindow : FindWindowNavFocusable(g.WindowsFocusOrder.Size - 1, -INT_MAX, -1))
1378813789
{
13789-
g.NavWindowingTarget = g.NavWindowingTargetAnim = window->RootWindow; // Current location
13790+
if (start_windowing_with_keyboard || g.ConfigNavWindowingWithGamepad)
13791+
g.NavWindowingTarget = g.NavWindowingTargetAnim = window->RootWindow; // Current location
1379013792
g.NavWindowingTimer = g.NavWindowingHighlightAlpha = 0.0f;
1379113793
g.NavWindowingAccumDeltaPos = g.NavWindowingAccumDeltaSize = ImVec2(0.0f, 0.0f);
1379213794
g.NavWindowingToggleLayer = start_windowing_with_gamepad ? true : false; // Gamepad starts toggling layer
13793-
g.NavInputSource = start_windowing_with_keyboard ? ImGuiInputSource_Keyboard : ImGuiInputSource_Gamepad;
13795+
g.NavWindowingInputSource = g.NavInputSource = start_windowing_with_keyboard ? ImGuiInputSource_Keyboard : ImGuiInputSource_Gamepad;
1379413796
if (g.NavWindow == NULL)
1379513797
just_started_windowing_from_null_focus = true;
1379613798

@@ -13800,9 +13802,9 @@ static void ImGui::NavUpdateWindowing()
1380013802
}
1380113803

1380213804
// Gamepad update
13803-
if (g.NavWindowingTarget && g.NavInputSource == ImGuiInputSource_Gamepad)
13805+
if ((g.NavWindowingTarget || g.NavWindowingToggleLayer) && g.NavWindowingInputSource == ImGuiInputSource_Gamepad)
1380413806
{
13805-
if (g.ConfigNavWindowingWithGamepad)
13807+
if (g.NavWindowingTarget != NULL)
1380613808
{
1380713809
// 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
1380813810
// However inputs are accepted immediately, so you press ImGuiKey_NavGamepadMenu + L1/R1 fast.
@@ -13824,14 +13826,15 @@ static void ImGui::NavUpdateWindowing()
1382413826
g.NavWindowingToggleLayer &= (g.NavWindowingHighlightAlpha < 1.0f); // Once button was held long enough we don't consider it a tap-to-toggle-layer press anymore.
1382513827
if (g.NavWindowingToggleLayer && g.NavWindow)
1382613828
apply_toggle_layer = true;
13827-
else if (!g.NavWindowingToggleLayer && g.ConfigNavWindowingWithGamepad)
13829+
else if (!g.NavWindowingToggleLayer)
1382813830
apply_focus_window = g.NavWindowingTarget;
1382913831
g.NavWindowingTarget = NULL;
13832+
g.NavWindowingToggleLayer = false;
1383013833
}
1383113834
}
1383213835

1383313836
// Keyboard: Focus
13834-
if (g.NavWindowingTarget && g.NavInputSource == ImGuiInputSource_Keyboard)
13837+
if (g.NavWindowingTarget && g.NavWindowingInputSource == ImGuiInputSource_Keyboard)
1383513838
{
1383613839
// Visuals only appears after a brief time after pressing TAB the first time, so that a fast CTRL+TAB doesn't add visual noise
1383713840
ImGuiKeyChord shared_mods = ((g.ConfigNavWindowingKeyNext ? g.ConfigNavWindowingKeyNext : ImGuiMod_Mask_) & (g.ConfigNavWindowingKeyPrev ? g.ConfigNavWindowingKeyPrev : ImGuiMod_Mask_)) & ImGuiMod_Mask_;
@@ -13854,10 +13857,10 @@ static void ImGui::NavUpdateWindowing()
1385413857
windowing_toggle_layer_start = true;
1385513858
g.NavWindowingToggleLayer = true;
1385613859
g.NavWindowingToggleKey = windowing_toggle_key;
13857-
g.NavInputSource = ImGuiInputSource_Keyboard;
13860+
g.NavWindowingInputSource = g.NavInputSource = ImGuiInputSource_Keyboard;
1385813861
break;
1385913862
}
13860-
if (g.NavWindowingToggleLayer && g.NavInputSource == ImGuiInputSource_Keyboard)
13863+
if (g.NavWindowingToggleLayer && g.NavWindowingInputSource == ImGuiInputSource_Keyboard)
1386113864
{
1386213865
// We cancel toggling nav layer when any text has been typed (generally while holding Alt). (See #370)
1386313866
// We cancel toggling nav layer when other modifiers are pressed. (See #4439)

imgui_internal.h

+1
Original file line numberDiff line numberDiff line change
@@ -2248,6 +2248,7 @@ struct ImGuiContext
22482248
ImGuiWindow* NavWindowingListWindow; // Internal window actually listing the CTRL+Tab contents
22492249
float NavWindowingTimer;
22502250
float NavWindowingHighlightAlpha;
2251+
ImGuiInputSource NavWindowingInputSource;
22512252
bool NavWindowingToggleLayer;
22522253
ImGuiKey NavWindowingToggleKey;
22532254
ImVec2 NavWindowingAccumDeltaPos;

0 commit comments

Comments
 (0)