Update status when debugging state changes

This commit is contained in:
x1nixmzeng 2018-04-19 00:33:41 +01:00
parent 95e0c7f88b
commit 7d26eb6af2
1 changed files with 4 additions and 0 deletions

View File

@ -350,6 +350,8 @@ namespace CxbxDebugger
// Enable when active
btnSuspend.Enabled = Active;
btnResume.Enabled = Active;
lblStatus.Text = (Active ? "Running" : "Inactive");
}));
}
else
@ -360,6 +362,8 @@ namespace CxbxDebugger
// Enable when active
btnSuspend.Enabled = Active;
btnResume.Enabled = Active;
lblStatus.Text = (Active ? "Running" : "Inactive");
}
}