mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-29 23:29:41 +02:00
Avoid rounding problem in HandleClear()
This commit is contained in:
parent
bfb812a9e4
commit
8704db3f63
@ -855,7 +855,7 @@ bool WaveTrack::HandleClear(double t0, double t1,
|
||||
}
|
||||
}
|
||||
} else
|
||||
if (clip->GetStartTime() >= t1)
|
||||
if (clip->BeforeClip(t1))
|
||||
{
|
||||
// Clip is "behind" the region -- offset it unless we're splitting
|
||||
// or we're using the "don't move other clips" mode
|
||||
|
Loading…
x
Reference in New Issue
Block a user