| 835 | } |
| 836 | |
| 837 | void AlienImGui::MonospaceText(std::string const& text) |
| 838 | { |
| 839 | ImGui::PushFont(StyleRepository::get().getMonospaceMediumFont()); |
| 840 | ImGui::PushStyleColor(ImGuiCol_Text, (ImVec4)Const::MonospaceColor); |
| 841 | Text(text); |
| 842 | ImGui::PopStyleColor(); |
| 843 | ImGui::PopFont(); |
| 844 | } |
| 845 | |
| 846 | void AlienImGui::BeginMenuBar() |
| 847 | { |
nothing calls this directly
no test coverage detected