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
Back-ends: imgui_impl_win32.cpp + imgui_impl_dx11.cpp
Compiler: VS2017
Operating System: Windows 10
My Issue/Question:
When you have a SliderInt above a Combo, without text in the label fields of both, when interacting with the combo, it will interact with the slider instead. If you however have a label propagated on either, the issue does not persist.
Is this behavior a bug, or is this expected? I do not wish to have text next to either the slider or combo in my project so it would be nice if I don't need it.
Screenshots/Video
Here's an example without the text, creating the issue.
Here's another example but with text that eliminates the issue.
Standalone, minimal, complete and verifiable example:
just add "##" to start of name,
example;
ImGui::SliderInt("", &int0, 0, 6);
to
ImGui::SliderInt("##myslidername", &int0, 0, 6); // will not show "myslidername" because of ##
Version/Branch of Dear ImGui:
Version: 1.69
Branch: MASTER
Back-end/Renderer/Compiler/OS
Back-ends: imgui_impl_win32.cpp + imgui_impl_dx11.cpp
Compiler: VS2017
Operating System: Windows 10
My Issue/Question:
When you have a SliderInt above a Combo, without text in the label fields of both, when interacting with the combo, it will interact with the slider instead. If you however have a label propagated on either, the issue does not persist.
Is this behavior a bug, or is this expected? I do not wish to have text next to either the slider or combo in my project so it would be nice if I don't need it.
Screenshots/Video
Here's an example without the text, creating the issue.
Here's another example but with text that eliminates the issue.
Standalone, minimal, complete and verifiable example:
This one with text propagating the combo to eliminate the issue.
The text was updated successfully, but these errors were encountered: