mirror of
https://github.com/cookiengineer/audacity
synced 2026-04-25 23:44:13 +02:00
Fix display of stereo first time reopening compressed/losseless save
This commit is contained in:
@@ -1713,7 +1713,7 @@ bool WaveTrack::HandleXMLTag(const wxChar *tag, const wxChar **attrs)
|
|||||||
{}
|
{}
|
||||||
else if (!wxStrcmp(attr, wxT("height")) &&
|
else if (!wxStrcmp(attr, wxT("height")) &&
|
||||||
XMLValueChecker::IsGoodInt(strValue) && strValue.ToLong(&nValue))
|
XMLValueChecker::IsGoodInt(strValue) && strValue.ToLong(&nValue))
|
||||||
mHeight = nValue;
|
SetHeight(nValue);
|
||||||
else if (!wxStrcmp(attr, wxT("minimized")) &&
|
else if (!wxStrcmp(attr, wxT("minimized")) &&
|
||||||
XMLValueChecker::IsGoodInt(strValue) && strValue.ToLong(&nValue))
|
XMLValueChecker::IsGoodInt(strValue) && strValue.ToLong(&nValue))
|
||||||
mMinimized = (nValue != 0);
|
mMinimized = (nValue != 0);
|
||||||
|
|||||||
Reference in New Issue
Block a user