1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-01 16:19:43 +02:00

Per http://bugzilla.audacityteam.org/show_bug.cgi?id=547#c8, default Selection Toolbar TimeTextCtrls to "hh:mm:ss + milliseconds". Note this also defaults it for any TimeTextCtrl for which the pref is "".

Also widened the default project window to 700 pixels, to accommodate the wider Selection Toolbar controls.
This commit is contained in:
v.audacity 2012-08-01 01:09:03 +00:00
parent 4d65012c5a
commit 1926c7745f
2 changed files with 2 additions and 2 deletions

View File

@ -534,7 +534,7 @@ void GetDefaultWindowRect(wxRect *defRect)
{
*defRect = wxGetClientDisplayRect();
defRect->width = 600;
defRect->width = 700;
defRect->height = 400;
//These conditional values assist in improving placement and size

View File

@ -559,7 +559,7 @@ wxString TimeTextCtrl::GetBuiltinFormat(const int index)
wxString TimeTextCtrl::GetBuiltinFormat(const wxString &name)
{
int ndx = 1;
int ndx = 4; // Default to "hh:mm:ss + milliseconds".
int i;
for (i=0; i<TimeTextCtrl::GetNumBuiltins(); i++) {