| 10527 | } |
| 10528 | |
| 10529 | void ImGui::OpenPopup(const char* str_id, ImGuiPopupFlags popup_flags) |
| 10530 | { |
| 10531 | ImGuiContext& g = *GImGui; |
| 10532 | ImGuiID id = g.CurrentWindow->GetID(str_id); |
| 10533 | IMGUI_DEBUG_LOG_POPUP("[popup] OpenPopup(\"%s\" -> 0x%08X\n", str_id, id); |
| 10534 | OpenPopupEx(id, popup_flags); |
| 10535 | } |
| 10536 | |
| 10537 | void ImGui::OpenPopup(ImGuiID id, ImGuiPopupFlags popup_flags) |
| 10538 | { |