diff options
| author | Jacob Palecki <[email protected]> | 2020-09-01 22:42:07 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-09-01 22:42:07 -0700 |
| commit | 26130b21dabaab7fc331844df11465623a811197 (patch) | |
| tree | 79063acdf3df901da59191471c31218eef1e219e /grapher/Layouts/LayoutBase.cs | |
| parent | intermittent commit - large commit halfway done (diff) | |
| download | rawaccel-26130b21dabaab7fc331844df11465623a811197.tar.xz rawaccel-26130b21dabaab7fc331844df11465623a811197.zip | |
Second half - the parts in place
Diffstat (limited to 'grapher/Layouts/LayoutBase.cs')
| -rw-r--r-- | grapher/Layouts/LayoutBase.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/grapher/Layouts/LayoutBase.cs b/grapher/Layouts/LayoutBase.cs index 0ad855a..daac6f1 100644 --- a/grapher/Layouts/LayoutBase.cs +++ b/grapher/Layouts/LayoutBase.cs @@ -15,12 +15,14 @@ namespace grapher.Layouts public const string Limit = "Limit"; public const string Midpoint = "Midpoint"; public const string Offset = "Offset"; + public const string Cap = "Cap"; + public const string Weight = "Weight"; public LayoutBase() { - ShowOptions = new bool[] { false, false, false, false }; + ShowOptions = new bool[] { false, false, false, false, true, true }; ShowOptionsXY = new bool[] { true, true }; - OptionNames = new string[] { string.Empty, string.Empty, string.Empty, string.Empty }; + OptionNames = new string[] { string.Empty, string.Empty, string.Empty, string.Empty, string.Empty, string.Empty }; ButtonEnabled = true; } |