1
0
mirror of synced 2024-11-28 17:30:57 +01:00

Try again

This commit is contained in:
KillzXGaming 2019-03-31 18:27:12 -04:00
parent c5e28dde5f
commit c8fa10a791

View File

@ -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;