Update status when debugging state changes
This commit is contained in:
parent
95e0c7f88b
commit
7d26eb6af2
|
@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue