BugFix Clone is playable if its origin is playable too

This commit is contained in:
Bruno Herbelin
2022-02-19 12:42:42 +01:00
parent caa05d739f
commit e03ef7e214
2 changed files with 8 additions and 1 deletions

View File

@@ -203,6 +203,13 @@ void CloneSource::play (bool on)
}
}
bool CloneSource::playable () const
{
if (origin_)
return origin_->playable();
return true;
}
void CloneSource::replay()
{
g_timer_reset(timer_);