From 1802f7319a911a64bb956c379e609385ee772492 Mon Sep 17 00:00:00 2001 From: Harald Csaszar Date: Mon, 2 Dec 2019 18:01:33 +0100 Subject: [PATCH] [csharp] Fixed an error in `Skin` where `Skin.setAttachment()` did not work as expected on 3.8 branch (See #1485). --- spine-csharp/src/Collections/OrderedDictionary.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/spine-csharp/src/Collections/OrderedDictionary.cs b/spine-csharp/src/Collections/OrderedDictionary.cs index f98e25059..e60e7f37b 100644 --- a/spine-csharp/src/Collections/OrderedDictionary.cs +++ b/spine-csharp/src/Collections/OrderedDictionary.cs @@ -277,6 +277,7 @@ namespace Spine.Collections set { int index; if (dictionary.TryGetValue(key, out index)) { + keys[index] = key; values[index] = value; } else {