1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-26 14:41:14 +01:00

Add a field to the status bar to show the state of Audacity, eg play/record/play pause. This is useful so that screen readers can easily read audacitys state.

This commit is contained in:
David Bailes
2015-05-29 13:45:15 +01:00
parent 981bdbb949
commit 5c67bc38b3
6 changed files with 78 additions and 14 deletions

View File

@@ -563,7 +563,7 @@ void ScreenFrame::DoCapture(wxString captureMode)
mCommand->SetParameter(wxT("CaptureMode"), captureMode);
if (!mCommand->Apply(mContext))
mStatus->SetStatusText(wxT("Capture failed!"));
mStatus->SetStatusText(wxT("Capture failed!"), 1);
Show();
}