diff options
| author | Jacob Palecki <[email protected]> | 2021-07-01 22:32:55 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2021-07-01 22:32:55 -0700 |
| commit | 308eed9ce9ed48984323e6512546a2ffeb195b14 (patch) | |
| tree | fa35c8ef8240b4598b63e27369dacbcb2b45ffd9 /grapher/Layouts | |
| parent | Begin updating guide (diff) | |
| download | rawaccel-308eed9ce9ed48984323e6512546a2ffeb195b14.tar.xz rawaccel-308eed9ce9ed48984323e6512546a2ffeb195b14.zip | |
LUT Panel formatting
Diffstat (limited to 'grapher/Layouts')
| -rw-r--r-- | grapher/Layouts/LUTLayout.cs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/grapher/Layouts/LUTLayout.cs b/grapher/Layouts/LUTLayout.cs index e570f6a..1e0037f 100644 --- a/grapher/Layouts/LUTLayout.cs +++ b/grapher/Layouts/LUTLayout.cs @@ -8,8 +8,6 @@ namespace grapher.Layouts { public class LUTLayout : LayoutBase { - public const string LUTLayoutText = "This mode is for advanced users only. Format: x1,y1;x2,y2;...xn,yn;"; - /// <summary> /// String small enough to fit in active value label /// </summary> @@ -30,7 +28,7 @@ namespace grapher.Layouts LimitLayout = new OptionLayout(false, string.Empty); ExponentLayout = new OptionLayout(false, Exponent); MidpointLayout = new OptionLayout(false, string.Empty); - LutTextLayout = new OptionLayout(true, LUTLayoutText); + LutTextLayout = new OptionLayout(true, string.Empty); LutPanelLayout = new OptionLayout(true, string.Empty); LutApplyOptionsLayout = new OptionLayout(true, string.Empty); } |