You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Its possible to block ALT navigation and focus on window? Its very useful and great feature but problem because in my application ALT key already using for rotation camera and other edit modes.
And when I click on the ALT to start rotating the camera, I have an Imgui window that I don't want to choose, and it turns out when I often click on the alt when the camera rotates, the windows are not highlighted, and this causes discomfort. I tried using ImGuiWindowFlags_NoNav or ImGuiWindowFlags_NavFocus but this only disables appearing window when press on CTRL+Tab.
So can i somehow disable this or change key navigation from ALT to only Right-ALT or other key?
The text was updated successfully, but these errors were encountered:
Thanks for the reply. Yes, this is a docked window . But it seems to me that when you press ALT, even a separate window will be highlighted.
I'm not sure about the manually sent tab bars because I haven't checked this case.
I've posted an answer for this in #3560
You can now generally use SetItemKeyOwner(ImGuiMod_Alt, ...) or SetKeyOwner(ImGuiMod_Alt, ...) to claim ownership of a key.
Its been late, but thanks anyway :) I already fixed this by modifying some ImGui internal code and add flag or something (dangerous), but if now ImGui has public API i revisit this.
Hey everyone!
Its possible to block ALT navigation and focus on window? Its very useful and great feature but problem because in my application ALT key already using for rotation camera and other edit modes.
And when I click on the ALT to start rotating the camera, I have an Imgui window that I don't want to choose, and it turns out when I often click on the alt when the camera rotates, the windows are not highlighted, and this causes discomfort. I tried using ImGuiWindowFlags_NoNav or ImGuiWindowFlags_NavFocus but this only disables appearing window when press on CTRL+Tab.
So can i somehow disable this or change key navigation from ALT to only Right-ALT or other key?
The text was updated successfully, but these errors were encountered: