From 629678525c74dce10d7bf9a583e74480427d263c Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Mon, 25 Mar 2019 16:48:39 -0400 Subject: [PATCH] Bug2082: collapse, append-record, expand should restore track height --- src/Track.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Track.cpp b/src/Track.cpp index f82204207..cc6c893ec 100644 --- a/src/Track.cpp +++ b/src/Track.cpp @@ -1236,7 +1236,7 @@ void TrackList::UpdatePendingTracks() if (updater) updater( *pendingTrack, *src ); pendingTrack->DoSetY(src->GetY()); - pendingTrack->DoSetHeight(src->GetHeight()); + pendingTrack->DoSetHeight(src->GetActualHeight()); pendingTrack->DoSetMinimized(src->GetMinimized()); pendingTrack->DoSetLinked(src->GetLinked()); }