From 9cdad754cc299f44ebac1a39e89ce28d01714290 Mon Sep 17 00:00:00 2001 From: Jacob Palecki Date: Thu, 16 Sep 2021 13:45:51 -0700 Subject: Fix error in LUT gui --- grapher/Models/Options/LUT/LUTPanelOptions.cs | 4 ++-- 1 file 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 -- cgit v1.2.3