use sys_seconds instead of sys_tim

This commit is contained in:
AdenKoperczak 2025-06-08 16:14:30 -04:00
parent 8d7d29bf5e
commit a87cb01935
No known key found for this signature in database
GPG key ID: 9843017036F62EE7

View file

@ -146,7 +146,7 @@ std::chrono::system_clock::time_point AnimationDockWidgetImpl::GetTimePoint()
selectedDate_ + selectedTime_;
const auto zonedTime =
zoned_time<std::chrono::seconds>(timeZone_, localTime);
const std::chrono::sys_time systemTime = zonedTime.get_sys_time();
const std::chrono::sys_seconds systemTime = zonedTime.get_sys_time();
// This is done to update it when the date changes
UpdateTimeZoneLabel(zonedTime);