Browse Source

Addendum to the previous commit, again.

Jumar Macato 7 years ago
parent
commit
91153814d6
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/Avalonia.Animation/Animation.cs
  2. 1 1
      src/Avalonia.Animation/Direction.cs

+ 1 - 1
src/Avalonia.Animation/Animation.cs

@@ -35,7 +35,7 @@ namespace Avalonia.Animation
         /// <summary>
         /// The playback direction for this animation.
         /// </summary>
-        public Direction PlaybackDirection { get; set; }
+        public PlaybackDirection PlaybackDirection { get; set; }
 
         /// <summary>
         /// Number of repeat iteration for this animation.

+ 1 - 1
src/Avalonia.Animation/Direction.cs

@@ -7,7 +7,7 @@ namespace Avalonia.Animation
     /// <summary>
     /// Determines the playback direction of an animation.
     /// </summary>
-    public enum Direction
+    public enum PlaybackDirection
     {
         /// <summary>
         /// The animation is played normally.