Skip to content
Snippets Groups Projects
Commit 2ca4e86a authored by Riley Mcgee's avatar Riley Mcgee
Browse files

Resolve saveAs Conflict

parent a167d103
No related branches found
No related tags found
No related merge requests found
......@@ -178,7 +178,7 @@ namespace Gifitti.View_Models
{
int start = 0;
bool pass = int.TryParse(textBox1.Text, out start);
if (pass & start >= 0)
if (pass && start >= 0 && start < gm.numberOfFrames)
{
gm.startFrame = start;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment