1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-22 06:22:58 +02: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

@@ -117,7 +117,7 @@ public:
{}
virtual void Update(wxString message)
{
mStatus.SetStatusText(message, 1);
mStatus.SetStatusText(message, mainStatusBarField);
}
};