mirror of
				https://github.com/Drezil/imgui.git
				synced 2025-11-03 22:51:06 +01:00 
			
		
		
		
	Nav: Fixed pressing Escape while in a child window with _NavFlattened flag. (#7237)
This commit is contained in:
		@@ -51,6 +51,7 @@ Other changes:
 | 
			
		||||
  the hover highlight to stay even while another item is activated.
 | 
			
		||||
- Nav: Fixed SetKeyboardFocusHere() not working when current nav focus is in different scope,
 | 
			
		||||
  regression from 1.90.1 related to code scoping Tab presses to local scope. (#7226) [@bratpilz]
 | 
			
		||||
- Nav: Fixed pressing Escape while in a child window with _NavFlattened flag. (#7237)
 | 
			
		||||
- Debug Tools: Metrics: Fixed debug break in SetShortcutRouting() not handling ImGuiMod_Shortcut redirect.
 | 
			
		||||
- Debug Tools: Debug Log: Added "Input Routing" logging.
 | 
			
		||||
- Backends: Vulkan: Fixed vkAcquireNextImageKHR() validation errors in VulkanSDK 1.3.275 by
 | 
			
		||||
 
 | 
			
		||||
@@ -12247,15 +12247,14 @@ static void ImGui::NavUpdateCancelRequest()
 | 
			
		||||
        NavRestoreLayer(ImGuiNavLayer_Main);
 | 
			
		||||
        NavRestoreHighlightAfterMove();
 | 
			
		||||
    }
 | 
			
		||||
    else if (g.NavWindow && g.NavWindow != g.NavWindow->RootWindow && !(g.NavWindow->Flags & ImGuiWindowFlags_Popup) && g.NavWindow->ParentWindow)
 | 
			
		||||
    else if (g.NavWindow && g.NavWindow != g.NavWindow->RootWindow && !(g.NavWindow->RootWindowForNav->Flags & ImGuiWindowFlags_Popup) && g.NavWindow->RootWindowForNav->ParentWindow)
 | 
			
		||||
    {
 | 
			
		||||
        // Exit child window
 | 
			
		||||
        ImGuiWindow* child_window = g.NavWindow;
 | 
			
		||||
        ImGuiWindow* parent_window = g.NavWindow->ParentWindow;
 | 
			
		||||
        ImGuiWindow* child_window = g.NavWindow->RootWindowForNav;
 | 
			
		||||
        ImGuiWindow* parent_window = child_window->ParentWindow;
 | 
			
		||||
        IM_ASSERT(child_window->ChildId != 0);
 | 
			
		||||
        ImRect child_rect = child_window->Rect();
 | 
			
		||||
        FocusWindow(parent_window);
 | 
			
		||||
        SetNavID(child_window->ChildId, ImGuiNavLayer_Main, 0, WindowRectAbsToRel(parent_window, child_rect));
 | 
			
		||||
        SetNavID(child_window->ChildId, ImGuiNavLayer_Main, 0, WindowRectAbsToRel(parent_window, child_window->Rect()));
 | 
			
		||||
        NavRestoreHighlightAfterMove();
 | 
			
		||||
    }
 | 
			
		||||
    else if (g.OpenPopupStack.Size > 0 && g.OpenPopupStack.back().Window != NULL && !(g.OpenPopupStack.back().Window->Flags & ImGuiWindowFlags_Modal))
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user