mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-15 09:27:08 +00:00
Fix the max frame value the timeline can go to.
This commit is contained in:
parent
8a22275cd5
commit
e1431631ad
2 changed files with 1 additions and 1 deletions
Binary file not shown.
|
@ -86,7 +86,7 @@ namespace Switch_Toolbox.Library.Forms
|
|||
get { return lastFrame + 1; }
|
||||
set
|
||||
{
|
||||
lastFrame = value - 1;
|
||||
lastFrame = value;
|
||||
|
||||
if (value == 1)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue