Revert real time playback being enabled by default (#3150)

This commit is contained in:
Dennis Kobert 2025-09-08 11:15:59 +02:00 committed by GitHub
parent 84470b6b6d
commit a1e05754e5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -99,11 +99,13 @@ impl MessageHandler<AnimationMessage, ()> for AnimationMessageHandler {
}
}
AnimationMessage::UpdateTime => {
responses.add(PortfolioMessage::SubmitActiveGraphRender);
if self.is_playing() && self.live_preview_recently_zero {
// Update the restart and pause/play buttons
responses.add(PortfolioMessage::UpdateDocumentWidgets);
self.live_preview_recently_zero = false;
if self.is_playing() {
responses.add(PortfolioMessage::SubmitActiveGraphRender);
if self.live_preview_recently_zero {
// Update the restart and pause/play buttons
responses.add(PortfolioMessage::UpdateDocumentWidgets);
self.live_preview_recently_zero = false;
}
}
}
AnimationMessage::RestartAnimation => {