| 7545 | } |
| 7546 | |
| 7547 | void ImGui::PopFont() |
| 7548 | { |
| 7549 | ImGuiContext& g = *GImGui; |
| 7550 | g.CurrentWindow->DrawList->PopTextureID(); |
| 7551 | g.FontStack.pop_back(); |
| 7552 | SetCurrentFont(g.FontStack.empty() ? GetDefaultFont() : g.FontStack.back()); |
| 7553 | } |
| 7554 | |
| 7555 | void ImGui::PushItemFlag(ImGuiItemFlags option, bool enabled) |
| 7556 | { |
nothing calls this directly
no test coverage detected