diff options
| author | Jacob Palecki <[email protected]> | 2020-09-07 19:13:30 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-09-07 19:13:30 -0700 |
| commit | 0fb1013f66026c696fec6469c02aba1c91711289 (patch) | |
| tree | 5a8a93de6c372195504bf17156f106835cc3a6b7 /grapher/Models/Options/Option.cs | |
| parent | Refactor type options (diff) | |
| download | rawaccel-0fb1013f66026c696fec6469c02aba1c91711289.tar.xz rawaccel-0fb1013f66026c696fec6469c02aba1c91711289.zip | |
Fix some separation bugs
Diffstat (limited to 'grapher/Models/Options/Option.cs')
| -rw-r--r-- | grapher/Models/Options/Option.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/grapher/Models/Options/Option.cs b/grapher/Models/Options/Option.cs index 68ecf66..5355a8a 100644 --- a/grapher/Models/Options/Option.cs +++ b/grapher/Models/Options/Option.cs @@ -110,6 +110,10 @@ namespace grapher { return Field.Left + Field.Width - Label.Left; } + set + { + Field.Width = value; + } } public override bool Visible |