diff options
| author | Jacob Palecki <[email protected]> | 2020-09-11 12:59:25 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-09-11 12:59:25 -0700 |
| commit | 0e60f2c30b147605c22413af2de243cdc5373f7e (patch) | |
| tree | a7731db76fe3aeb00a45f31e23f2fcf8a249db81 /grapher/Models/Options | |
| parent | Add alpha (diff) | |
| download | rawaccel-0e60f2c30b147605c22413af2de243cdc5373f7e.tar.xz rawaccel-0e60f2c30b147605c22413af2de243cdc5373f7e.zip | |
Fix box write
Diffstat (limited to 'grapher/Models/Options')
| -rw-r--r-- | grapher/Models/Options/Option.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/grapher/Models/Options/Option.cs b/grapher/Models/Options/Option.cs index 5dc022b..c0d339e 100644 --- a/grapher/Models/Options/Option.cs +++ b/grapher/Models/Options/Option.cs @@ -119,7 +119,7 @@ namespace grapher { get { - return Field.Box.Visible; + return Field.Box.Enabled; } } @@ -140,14 +140,14 @@ namespace grapher public override void Hide() { - Field.Box.Hide(); + Field.Hide(); Label.Hide(); ActiveValueLabel.Hide(); } public void Show() { - Field.Box.Show(); + Field.Show(); Label.Show(); ActiveValueLabel.Show(); } |