Update volume time outside of loop

This commit is contained in:
Dan Paulat 2024-01-27 23:28:22 -06:00
parent 8d1fcfec7f
commit eb076307c9

View file

@ -886,9 +886,9 @@ void MainWindowImpl::ConnectAnimationSignals()
&manager::TimelineManager::VolumeTimeUpdated,
[this](std::chrono::system_clock::time_point dateTime)
{
volumeTime_ = dateTime;
for (auto map : maps_)
{
volumeTime_ = dateTime;
map->SelectTime(dateTime);
}
});