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

status bar state field. When you move to the menubar, the state field is no longer cleared. This was achieved by introducing a dummy field of width 0. When you first open a new audacity project, the state is stopped - previously the state only appeared after the first play/pause/etc command.

This commit is contained in:
David Bailes
2015-06-02 15:18:12 +01:00
parent 14b8607017
commit 391bd1691c
6 changed files with 38 additions and 23 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!"), 1);
mStatus->SetStatusText(wxT("Capture failed!"), mainStatusBarField);
Show();
}