summaryrefslogtreecommitdiff
path: root/grapher/Layouts/LUTLayout.cs
diff options
context:
space:
mode:
authorJacob Palecki <[email protected]>2021-06-30 00:01:26 -0700
committerJacob Palecki <[email protected]>2021-06-30 00:01:26 -0700
commitabbe20f63aded56c4714766ca1b93183eafa062a (patch)
tree4b1a6e91b7c8c4fa3f017e4fc6880b932fb93dca /grapher/Layouts/LUTLayout.cs
parentFix high DPI issue (diff)
downloadrawaccel-abbe20f63aded56c4714766ca1b93183eafa062a.tar.xz
rawaccel-abbe20f63aded56c4714766ca1b93183eafa062a.zip
Add class for LUT apply type
Diffstat (limited to 'grapher/Layouts/LUTLayout.cs')
-rw-r--r--grapher/Layouts/LUTLayout.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/grapher/Layouts/LUTLayout.cs b/grapher/Layouts/LUTLayout.cs
index 37c336e..e570f6a 100644
--- a/grapher/Layouts/LUTLayout.cs
+++ b/grapher/Layouts/LUTLayout.cs
@@ -8,7 +8,7 @@ namespace grapher.Layouts
{
public class LUTLayout : LayoutBase
{
- public const string LUTLayoutText = "This mode is for advanced users only. We recommend setting points in the settings file with a script.";
+ 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
@@ -32,6 +32,7 @@ namespace grapher.Layouts
MidpointLayout = new OptionLayout(false, string.Empty);
LutTextLayout = new OptionLayout(true, LUTLayoutText);
LutPanelLayout = new OptionLayout(true, string.Empty);
+ LutApplyOptionsLayout = new OptionLayout(true, string.Empty);
}
public override string ActiveName => LUTActiveName;