From eae8d688ae3ba6763f6ef4c7b7455ed0fab71878 Mon Sep 17 00:00:00 2001 From: Behnam Date: Tue, 1 Sep 2020 20:48:04 +0430 Subject: [PATCH] Bug-fix --- .gitignore | 7 ++++++- ManoMachine/SimulatorBox.cs | 4 ++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 4ce6fdd..0172f2d 100644 --- a/.gitignore +++ b/.gitignore @@ -337,4 +337,9 @@ ASALocalRun/ .localhistory/ # BeatPulse healthcheck temp database -healthchecksdb \ No newline at end of file +healthchecksdb + + + +/ManoMachine/data/icon 2.svg +/ManoMachine/data/icon.svg diff --git a/ManoMachine/SimulatorBox.cs b/ManoMachine/SimulatorBox.cs index 0c43a5b..d633aec 100644 --- a/ManoMachine/SimulatorBox.cs +++ b/ManoMachine/SimulatorBox.cs @@ -164,9 +164,9 @@ private void simulator_Stopped() UpdateValues(); if (simulator.State.S) - UpdateNextuOp("- Machine Halted"); - else UpdateNextuOp("- Machine Stopped"); + else + UpdateNextuOp("- Machine Halted"); UpdateNextuOp(); } }