diff --git a/Switch_Toolbox_Library/Forms/Editors/Animation/TimeLine.cs b/Switch_Toolbox_Library/Forms/Editors/Animation/TimeLine.cs index 3897acc2..21afefac 100644 --- a/Switch_Toolbox_Library/Forms/Editors/Animation/TimeLine.cs +++ b/Switch_Toolbox_Library/Forms/Editors/Animation/TimeLine.cs @@ -64,7 +64,7 @@ namespace Switch_Toolbox.Library.Forms public int CurrentFrame { - get => currentFrame; + get { return currentFrame; } set { if (FollowCurrentFrame && !(Focused && MouseButtons == MouseButtons.Right)) @@ -85,7 +85,7 @@ namespace Switch_Toolbox.Library.Forms public int FrameCount { - get => lastFrame + 1; + get { return lastFrame + 1; } set { lastFrame = value - 1;