Skip to content
Snippets Groups Projects
Commit 89c54af5 authored by Riley Mcgee's avatar Riley Mcgee
Browse files
parents 53191f55 075b551d
No related branches found
No related tags found
No related merge requests found
......@@ -115,7 +115,7 @@ namespace Gifitti.View_Models
int Length = globalGif.GetFrameCount(FrameDimension.Time);
if (x != "")
{
for (int i = 0; i < Length; i++)
for (int i = gm.startFrame; i < gm.endFrame; i++)
{
globalGif.SelectActiveFrame(FrameDimension.Time, i);
test = globalGif;
......@@ -143,7 +143,7 @@ namespace Gifitti.View_Models
int Length = globalGif.GetFrameCount(FrameDimension.Time);
if (x != "")
{
for (int i = 0; i < Length; i++)
for (int i = gm.startFrame; i < gm.endFrame; i++)
{
globalGif.SelectActiveFrame(FrameDimension.Time, i);
test = globalGif;
......@@ -170,7 +170,7 @@ namespace Gifitti.View_Models
int Length = globalGif.GetFrameCount(FrameDimension.Time);
if (x != "")
{
for (int i = 0; i < Length; i++)
for (int i = gm.startFrame; i < gm.endFrame; i++)
{
globalGif.SelectActiveFrame(FrameDimension.Time, i);
test = new Bitmap(globalGif);
......@@ -197,7 +197,7 @@ namespace Gifitti.View_Models
int Length = globalGif.GetFrameCount(FrameDimension.Time);
if (x != "")
{
for (int i = 0; i < Length; i++)
for (int i = gm.startFrame; i < gm.endFrame; i++)
{
globalGif.SelectActiveFrame(FrameDimension.Time, i);
test = globalGif;
......
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