mirror of
https://github.com/cookiengineer/audacity
synced 2026-02-09 05:01:57 +01:00
Consolidate multiple names for the same feature: sticky/linked/sync/synchro/grouped -> sync-lock.
This commit is contained in:
@@ -122,7 +122,7 @@ bool EffectRepeat::Process()
|
||||
for (Track *t = iter.First(); t && bGoodResult; t = iter.Next()) {
|
||||
if (t->GetKind() == Track::Label)
|
||||
{
|
||||
if (t->GetSelected() || t->IsSynchroSelected())
|
||||
if (t->GetSelected() || t->IsSyncLockSelected())
|
||||
{
|
||||
LabelTrack* track = (LabelTrack*)t;
|
||||
|
||||
@@ -163,9 +163,9 @@ bool EffectRepeat::Process()
|
||||
delete dest;
|
||||
nTrack++;
|
||||
}
|
||||
else if (t->IsSynchroSelected())
|
||||
else if (t->IsSyncLockSelected())
|
||||
{
|
||||
t->SyncAdjust(mT1, mT1 + (mT1 - mT0) * repeatCount);
|
||||
t->SyncLockAdjust(mT1, mT1 + (mT1 - mT0) * repeatCount);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user