| 7127 | } |
| 7128 | |
| 7129 | void ImGui::PopFont() |
| 7130 | { |
| 7131 | ImGuiContext& g = *GImGui; |
| 7132 | g.CurrentWindow->DrawList->PopTextureID(); |
| 7133 | g.FontStack.pop_back(); |
| 7134 | SetCurrentFont(g.FontStack.empty() ? GetDefaultFont() : g.FontStack.back()); |
| 7135 | } |
| 7136 | |
| 7137 | void ImGui::PushItemFlag(ImGuiItemFlags option, bool enabled) |
| 7138 | { |
nothing calls this directly
no test coverage detected