mirror of
				https://github.com/Drezil/imgui.git
				synced 2025-11-04 07:01:04 +01:00 
			
		
		
		
	Nav: MoveRequest doesn't affect io.NavUsable so that navigation failure doesn't trigger false positive & not needed (undo part of 3cc1419df)
				
					
				
			This commit is contained in:
		@@ -2475,7 +2475,7 @@ static void NavUpdate()
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    // Set output flags for user application
 | 
					    // Set output flags for user application
 | 
				
			||||||
    g.IO.NavUsable = g.FocusedWindow && !(g.FocusedWindow->Flags & ImGuiWindowFlags_NoNavInputs);
 | 
					    g.IO.NavUsable = g.FocusedWindow && !(g.FocusedWindow->Flags & ImGuiWindowFlags_NoNavInputs);
 | 
				
			||||||
    g.IO.NavActive = (g.IO.NavUsable && g.NavId != 0 && !g.NavDisableHighlight) || (g.NavWindowingTarget != NULL) || g.NavMoveRequest || g.NavInitDefaultRequest;
 | 
					    g.IO.NavActive = (g.IO.NavUsable && g.NavId != 0 && !g.NavDisableHighlight) || (g.NavWindowingTarget != NULL) || g.NavInitDefaultRequest;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    // Process NavCancel input (to close a popup, get back to parent, clear focus)
 | 
					    // Process NavCancel input (to close a popup, get back to parent, clear focus)
 | 
				
			||||||
    if (IsKeyPressedMap(ImGuiKey_NavCancel))
 | 
					    if (IsKeyPressedMap(ImGuiKey_NavCancel))
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user