From d395a61450f327e7e942821cc0dd6bfa1eb2e973 Mon Sep 17 00:00:00 2001 From: David Bailes Date: Mon, 8 Jun 2015 12:33:20 +0100 Subject: [PATCH] Fix for initial width of actual rate field of status bar. This was too big, and causing messages in the main field to be truncated. --- src/Project.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Project.cpp b/src/Project.cpp index 9cef7d3c6..2a37d66a5 100644 --- a/src/Project.cpp +++ b/src/Project.cpp @@ -1021,7 +1021,7 @@ AudacityProject::AudacityProject(wxWindow * parent, wxWindowID id, mTrackFactory = new TrackFactory(mDirManager); - int widths[] = {0, GetControlToolBar()->WidthForStatusBar(mStatusBar), -2, -1}; + int widths[] = {0, GetControlToolBar()->WidthForStatusBar(mStatusBar), -1, 150}; mStatusBar->SetStatusWidths(4, widths); wxString msg = wxString::Format(_("Welcome to Audacity version %s"), AUDACITY_VERSION_STRING);