Skip to content

Commit

Permalink
- Fixing bug with the name of animations displayed for the Wheel Over…
Browse files Browse the repository at this point in the history
…lay Widget
  • Loading branch information
Matthew Olivo committed Sep 29, 2024
1 parent f119994 commit ac8345b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions MixItUp.Base/ViewModel/Overlay/OverlayWheelV3ViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -290,9 +290,9 @@ public OverlayWheelV3ViewModel(OverlayWheelV3Model item)
this.AddOutcome(new OverlayWheelOutcomeV3ViewModel(this, outcome));
}

this.EntranceAnimation = new OverlayAnimationV3ViewModel(Resources.ItemAdded, item.EntranceAnimation);
this.OutcomeSelectedAnimation = new OverlayAnimationV3ViewModel(Resources.ItemAdded, item.OutcomeSelectedAnimation);
this.ExitAnimation = new OverlayAnimationV3ViewModel(Resources.ItemAdded, item.ExitAnimation);
this.EntranceAnimation = new OverlayAnimationV3ViewModel(Resources.Entrance, item.EntranceAnimation);
this.OutcomeSelectedAnimation = new OverlayAnimationV3ViewModel(Resources.OutcomeSelected, item.OutcomeSelectedAnimation);
this.ExitAnimation = new OverlayAnimationV3ViewModel(Resources.Exit, item.ExitAnimation);

this.Initialize();
}
Expand Down

0 comments on commit ac8345b

Please sign in to comment.