mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-11 00:04:24 +00:00
Nav: Fixed SetItemDefaultFocus from stealing default focus when we are initializing default focus for a menu bar layer (#787)
This commit is contained in:
parent
f4398226cc
commit
cf308f4039
2 changed files with 2 additions and 2 deletions
|
|
@ -2420,7 +2420,7 @@ struct ExampleAppConsole
|
|||
|
||||
// Demonstrate keeping focus on the input box
|
||||
ImGui::SetItemDefaultFocus();
|
||||
if (ImGui::IsItemHovered() || reclaim_focus)
|
||||
if (reclaim_focus) //|| ImGui::IsItemHovered())
|
||||
ImGui::SetKeyboardFocusHere(-1); // Auto focus previous widget
|
||||
|
||||
ImGui::End();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue