From b2a45a17da616f693457d5aa745dccb213e515ae Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Thu, 20 Dec 2018 14:13:53 -0500 Subject: [PATCH] Fix display of stereo first time reopening compressed/losseless save --- src/WaveTrack.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/WaveTrack.cpp b/src/WaveTrack.cpp index 131fa1f66..1d657b742 100644 --- a/src/WaveTrack.cpp +++ b/src/WaveTrack.cpp @@ -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);