| 129 | } |
| 130 | |
| 131 | void TemporalControlWindow::processRunButton() |
| 132 | { |
| 133 | ImGui::BeginDisabled(_simulationFacade->isSimulationRunning()); |
| 134 | auto result = AlienImGui::ToolbarButton(AlienImGui::ToolbarButtonParameters().text(ICON_FA_PLAY)); |
| 135 | AlienImGui::Tooltip("Run"); |
| 136 | if (result) { |
| 137 | _history.clear(); |
| 138 | _simulationFacade->runSimulation(); |
| 139 | printOverlayMessage("Run"); |
| 140 | } |
| 141 | ImGui::EndDisabled(); |
| 142 | } |
| 143 | |
| 144 | void TemporalControlWindow::processPauseButton() |
| 145 | { |
nothing calls this directly
no test coverage detected