From b0faf470c6b7a7565b4f9236e7b77ef394f9bd98 Mon Sep 17 00:00:00 2001 From: Vasyl Skorych Date: Tue, 21 May 2024 19:05:13 +0200 Subject: [PATCH] fix(GUI): Proper reaction on Simulation stop button Do not show the simulation as stopped if it is still running after pressing the Stop button. --- GUIWidgets/SimulationThread/SimulationThread.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/GUIWidgets/SimulationThread/SimulationThread.cpp b/GUIWidgets/SimulationThread/SimulationThread.cpp index 95d5fc28..08d23066 100644 --- a/GUIWidgets/SimulationThread/SimulationThread.cpp +++ b/GUIWidgets/SimulationThread/SimulationThread.cpp @@ -26,5 +26,4 @@ void CSimulationThread::RequestStop() { m_stop(); m_aborted = true; - emit Finished(); }