1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-04 09:39:42 +02:00

Fix display of stereo first time reopening compressed/losseless save

This commit is contained in:
Paul Licameli 2018-12-20 14:13:53 -05:00
parent 340bd20fc6
commit b2a45a17da

View File

@ -1713,7 +1713,7 @@ bool WaveTrack::HandleXMLTag(const wxChar *tag, const wxChar **attrs)
{}
else if (!wxStrcmp(attr, wxT("height")) &&
XMLValueChecker::IsGoodInt(strValue) && strValue.ToLong(&nValue))
mHeight = nValue;
SetHeight(nValue);
else if (!wxStrcmp(attr, wxT("minimized")) &&
XMLValueChecker::IsGoodInt(strValue) && strValue.ToLong(&nValue))
mMinimized = (nValue != 0);