| 603 | } |
| 604 | |
| 605 | void MainLoopController::pushGlobalStyle() |
| 606 | { |
| 607 | ImGui::PushStyleVar(ImGuiStyleVar_GrabMinSize, Const::SliderBarWidth); |
| 608 | ImGui::PushStyleVar(ImGuiStyleVar_WindowRounding, Const::WindowsRounding); |
| 609 | ImGui::PushStyleColor(ImGuiCol_HeaderHovered, (ImVec4)Const::HeaderHoveredColor); |
| 610 | ImGui::PushStyleColor(ImGuiCol_HeaderActive, (ImVec4)Const::HeaderActiveColor); |
| 611 | ImGui::PushStyleColor(ImGuiCol_Header, (ImVec4)Const::HeaderColor); |
| 612 | } |
| 613 | |
| 614 | void MainLoopController::popGlobalStyle() |
| 615 | { |
nothing calls this directly
no outgoing calls
no test coverage detected