We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The first parameter of BeginCombo cannot be left blank, otherwise it will not pop up correctly under the TabItem. I'm not sure if this is a bug.
if (ImGui::BeginTabItem("Test")) { if (ImGui::BeginCombo("", "None")) { ImGui::EndCombo(); } ImGui::EndTabItem(); }
The text was updated successfully, but these errors were encountered:
It needs a non-empty label to compute the combo box's unique ID. The label can be hidden by prepending ## to it: ImGui::BeginCombo("##my_combo", ...).
##
ImGui::BeginCombo("##my_combo", ...)
https://github.com/ocornut/imgui/blob/master/docs/FAQ.md#q-about-the-id-stack-system
Sorry, something went wrong.
It needs a non-empty label to compute the combo box's unique ID. The label can be hidden by prepending ## to it: ImGui::BeginCombo("##my_combo", ...). https://github.com/ocornut/imgui/blob/master/docs/FAQ.md#q-about-the-id-stack-system
thanks
Added io.ConfigDebugHighlightIdConflicts debug feature! (#7961, #7669)
67cd4ea
Also #74, #96, #480, #501, #647, #654, #719, #843, #894, #1057, #1173, #1390, #1414, #1556, #1768, #2041, #2116, #2330, #2475, #2562, #2667, #2807, #2885, #3102, #3375, #3526, #3964, #4008, #4070, #4158, #4172, #4199, #4375, #4395, #4471, #4548, #4612, #4631, #4657, #4796, #5210, #5303, #5360, #5393, #5533, #5692, #5707, #5729, #5773, #5787, #5884, #6046, #6093, #6186, #6223, #6364, #6387, #6567, #6692, #6724, #6939, #6984, #7246, #7270, #7375, #7421, #7434, #7472, #7581, #7724, #7926, #7937 and probably more.. Tagging to increase visibility!
No branches or pull requests
The first parameter of BeginCombo cannot be left blank, otherwise it will not pop up correctly under the TabItem. I'm not sure if this is a bug.
The text was updated successfully, but these errors were encountered: