summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Palecki <[email protected]>2021-09-16 13:45:51 -0700
committera1xd <[email protected]>2021-09-23 22:34:51 -0400
commit9cdad754cc299f44ebac1a39e89ce28d01714290 (patch)
tree6d359b998a105cd2487883aaaf68da86d06be125
parentRemove weight (diff)
downloadrawaccel-9cdad754cc299f44ebac1a39e89ce28d01714290.tar.xz
rawaccel-9cdad754cc299f44ebac1a39e89ce28d01714290.zip
Fix error in LUT gui
-rw-r--r--grapher/Models/Options/LUT/LUTPanelOptions.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/grapher/Models/Options/LUT/LUTPanelOptions.cs b/grapher/Models/Options/LUT/LUTPanelOptions.cs
index 11550e4..eedcfa8 100644
--- a/grapher/Models/Options/LUT/LUTPanelOptions.cs
+++ b/grapher/Models/Options/LUT/LUTPanelOptions.cs
@@ -126,11 +126,11 @@ namespace grapher.Models.Options.LUT
y = rawData.ElementAt(data_idx + 1)
};
}
- ActiveValuesTextBox.Text = PointsToActiveValuesText(points, length);
+ ActiveValuesTextBox.Text = PointsToActiveValuesText(points, pointsLen);
if (string.IsNullOrWhiteSpace(PointsTextBox.Text))
{
- PointsTextBox.Text = PointsToEntryTextBoxText(points, length);
+ PointsTextBox.Text = PointsToEntryTextBoxText(points, pointsLen);
}
}
else