diff options
| author | Jacob Palecki <[email protected]> | 2021-09-16 13:45:51 -0700 |
|---|---|---|
| committer | a1xd <[email protected]> | 2021-09-23 22:34:51 -0400 |
| commit | 9cdad754cc299f44ebac1a39e89ce28d01714290 (patch) | |
| tree | 6d359b998a105cd2487883aaaf68da86d06be125 /grapher/Models | |
| parent | Remove weight (diff) | |
| download | rawaccel-9cdad754cc299f44ebac1a39e89ce28d01714290.tar.xz rawaccel-9cdad754cc299f44ebac1a39e89ce28d01714290.zip | |
Fix error in LUT gui
Diffstat (limited to 'grapher/Models')
| -rw-r--r-- | grapher/Models/Options/LUT/LUTPanelOptions.cs | 4 |
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 |