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
ImGui Version: v1.61
Backend: DirectX11 sample (as well as our own DirectX12)
It seems if I create a popup (modal or otherwise) I cannot use a combo box in the popup. Clicking the down arrow on the combo box flickers for a frame and then disappears. This works just fine with a regular window.
Thanks so much for writing ImGui by the way! It's great! I'm going to get our company to send you a donation here soon, as looks like we will be using ImGui more and more.
As part of #1497 I actually had introduced a measure to alleviate the issues caused by this, and it was incomplete. I have now pushed a fix that will also prevent the child popups from being closed. (See commit above to understand). So you actually reported a bug :) Thanks!
The thing is, it is useful to call OpenPopup() again (the most common use case being that right-click context menus are typically reopened when you right-click again) and that means closing the child popups. So we have a special case were we catch when the user calls it every frame.
ImGui Version: v1.61
Backend: DirectX11 sample (as well as our own DirectX12)
It seems if I create a popup (modal or otherwise) I cannot use a combo box in the popup. Clicking the down arrow on the combo box flickers for a frame and then disappears. This works just fine with a regular window.
Thanks so much for writing ImGui by the way! It's great! I'm going to get our company to send you a donation here soon, as looks like we will be using ImGui more and more.
Cheers,
-Steve
The text was updated successfully, but these errors were encountered: