summaryrefslogtreecommitdiff
path: root/grapher/Models/Options
diff options
context:
space:
mode:
Diffstat (limited to 'grapher/Models/Options')
-rw-r--r--grapher/Models/Options/Option.cs6
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();
}