From 64cc17c0ee80e458d2ede81a3b3f6dcb6ebd9840 Mon Sep 17 00:00:00 2001 From: Neil Enns Date: Sat, 10 Dec 2022 10:59:53 -0800 Subject: [PATCH] Change data type (#1043) Co-authored-by: Neil Enns <{ID}+{username}@users.noreply.github.com> --- UI/Panels/Config/InterpolationPanel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/Panels/Config/InterpolationPanel.cs b/UI/Panels/Config/InterpolationPanel.cs index 79c8bbe13..866346051 100644 --- a/UI/Panels/Config/InterpolationPanel.cs +++ b/UI/Panels/Config/InterpolationPanel.cs @@ -49,7 +49,7 @@ internal void syncFromConfig(Interpolation i) dt.Rows.Clear(); - foreach (float Key in i.GetValues().Keys) + foreach (double Key in i.GetValues().Keys) { DataRow row = dt.NewRow(); row["Input"] = Key.ToString();