From a5c9449ddafdf8841c1f9e926e40b2a412562c07 Mon Sep 17 00:00:00 2001 From: Tim Young Date: Tue, 19 Sep 2017 14:59:52 -0500 Subject: [PATCH] fix Apply. It had not been tracking the correct item number. --- SpriteLibrary/SpriteEntryForm.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/SpriteLibrary/SpriteEntryForm.cs b/SpriteLibrary/SpriteEntryForm.cs index 21cf804..87579d6 100644 --- a/SpriteLibrary/SpriteEntryForm.cs +++ b/SpriteLibrary/SpriteEntryForm.cs @@ -405,8 +405,9 @@ namespace SpriteLibrary } else { - SpriteInformation.Add(TempInformation.Clone()); - CurrentSIIndex = SpriteInformation.IndexOf(TempInformation); + SpriteInfo tSI = TempInformation.Clone(); + SpriteInformation.Add(tSI); + CurrentSIIndex = SpriteInformation.IndexOf(tSI); } UpdateMenu(); }