mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-15 01:17:00 +00:00
Nav: Allow PadLeft to close a menu (#323)
This commit is contained in:
parent
c203be94c6
commit
e55882f74b
@ -9779,6 +9779,11 @@ bool ImGui::BeginMenu(const char* label, bool enabled)
|
||||
want_open = true;
|
||||
g.NavMoveRequest = false;
|
||||
}
|
||||
if (g.NavWindow && g.NavWindow->ParentWindow == window && g.NavMoveRequest && g.NavMoveDir == ImGuiNavDir_Left) // Nav-Left to close
|
||||
{
|
||||
want_close = true;
|
||||
g.NavMoveRequest = false;
|
||||
}
|
||||
}
|
||||
else if (menu_is_open && pressed && menuset_is_open) // Menu bar: click an open menu again to close it
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user