Skip to content

Commit

Permalink
Change data type (#1043)
Browse files Browse the repository at this point in the history
Co-authored-by: Neil Enns <{ID}+{username}@users.noreply.github.com>
  • Loading branch information
neilenns and Neil Enns authored Dec 10, 2022
1 parent 521bbb3 commit 64cc17c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UI/Panels/Config/InterpolationPanel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 64cc17c

Please sign in to comment.