-
-
Notifications
You must be signed in to change notification settings - Fork 10.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can no longer use ctrl shortcuts in InputText's as of v1.90.6 #7568
Comments
I re-read the changelog several times over and I see no mention of this change so I'm not sure its intentional or not. I recorded a video showing a better example, one of ctrl inputs not working on v1.90.6, and the second video is v1.90.5 showing they work fine. I also have the demo window open showing the inputs so it's not an issue with windproc. v1.90.6 shortcuts do not work: https://www.youtube.com/watch?v=0t1s4SujjZE v1.90.5 shortcuts work fine: https://www.youtube.com/watch?v=4QQOJS8gzxg |
It works in demo if I build the vanilla examples and it is obviously very much exercised by the test suite. Based on the information you provided, I agree that I don't see related changes in Changelog. The changelog are pretty thorough but I also did a quick diff checks between versions and can't find a potential culprit.
|
Hah this was it! It turns out the problem was because of |
I will add calls to IMGUI_CHECK_VERSION() in more sources files as I believe this would help detect users’ build issues. |
… ABI compatibility between caller code and compiled version of dear imgui. (#7568)
Version/Branch of Dear ImGui:
Version 1.90.6, Branch: master
Back-ends:
imgui_impl_win32.cpp + imgui_impl_dx11.cpp
Compiler, OS:
Windows 10, MSVC 2022
Full config/build information:
Details:
My Issue/Question:
I can no longer use ctrl shortcuts in
ImGui::InputText
's. For example usingctrl + a
to select everything in the input,ctrl + c
to copy the selected text, orctrl + v
to paste text into the input; none of which work anymore. The only flags I'm using areImGuiInputTextFlags_EnterReturnsTrue
.I've verified the clipboard functions such as
ImGui::SetClipboardText
all still work fine, so it seems to be an issue withImGui::InputText
's. I reverted to the previous ImGui release (v1.90.5) without changing anything else and all the ctrl shortcuts work fine again.Screenshots/Video:
No response
Minimal, Complete and Verifiable Example code:
No response
The text was updated successfully, but these errors were encountered: