mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-23 17:30:17 +01:00
Define Track::AdjustPositions()
This commit is contained in:
@@ -1328,6 +1328,15 @@ bool Track::HandleCommonXMLAttribute(const wxChar *attr, const wxChar *value)
|
||||
return false;
|
||||
}
|
||||
|
||||
void Track::AdjustPositions()
|
||||
{
|
||||
auto pList = mList.lock();
|
||||
if (pList) {
|
||||
pList->RecalcPositions(mNode);
|
||||
pList->ResizingEvent(mNode);
|
||||
}
|
||||
}
|
||||
|
||||
bool TrackList::HasPendingTracks() const
|
||||
{
|
||||
if ( !mPendingUpdates.empty() )
|
||||
|
||||
Reference in New Issue
Block a user