diff --git a/LATEST_RELEASE_NOTES.md b/LATEST_RELEASE_NOTES.md index 3a7c449c..e4a73066 100644 --- a/LATEST_RELEASE_NOTES.md +++ b/LATEST_RELEASE_NOTES.md @@ -5,6 +5,7 @@ Bugs addressed in this release: * [#593](../../issues/593) Are the draw colors for selected and reference inverted on the drawing setup * [#598](../../issues/598) ASAN crashes when drawing sprites * [#599](../../issues/599) Selected marchers on field don't match animation +* [#600](../../issues/600) click on Sprites in animation view doesn't automatically update the view Other changes: diff --git a/src/AnimationPanel.cpp b/src/AnimationPanel.cpp index dfaad27b..7a51b187 100644 --- a/src/AnimationPanel.cpp +++ b/src/AnimationPanel.cpp @@ -98,10 +98,13 @@ void AnimationPanel::CreateControls() }, wxUI::VSizer{ mSpritesCheckbox = wxUI::CheckBox{ "Sprites" } + .withValue(mConfig.Get_UseSprites()) .bind([this](wxCommandEvent& event) { mConfig.Set_UseSprites(event.IsChecked()); + Refresh(); }), mZoomCheckbox = wxUI::CheckBox{ "Zoom" } + .withValue(mCanvas->GetZoomOnMarchers()) .bind([this](wxCommandEvent& event) { mCanvas->SetZoomOnMarchers(event.IsChecked()); }),