summaryrefslogtreecommitdiff
path: root/grapher/Models/Charts/ChartState/ChartState.cs
diff options
context:
space:
mode:
authorJacob Palecki <[email protected]>2021-01-12 09:25:48 -0800
committerJacob Palecki <[email protected]>2021-01-12 09:25:48 -0800
commit784f7cab713640f4a13880ebc3c5abc10894d23c (patch)
tree5504f514c18e6c41c690996eb53974d2efd3fcf4 /grapher/Models/Charts/ChartState/ChartState.cs
parentDirectionality menu progress (diff)
downloadrawaccel-784f7cab713640f4a13880ebc3c5abc10894d23c.tar.xz
rawaccel-784f7cab713640f4a13880ebc3c5abc10894d23c.zip
Many small tweaks
Diffstat (limited to 'grapher/Models/Charts/ChartState/ChartState.cs')
-rw-r--r--grapher/Models/Charts/ChartState/ChartState.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/grapher/Models/Charts/ChartState/ChartState.cs b/grapher/Models/Charts/ChartState/ChartState.cs
index 0bb141e..269d269 100644
--- a/grapher/Models/Charts/ChartState/ChartState.cs
+++ b/grapher/Models/Charts/ChartState/ChartState.cs
@@ -77,12 +77,14 @@ namespace grapher.Models.Charts.ChartState
public void ShowVelocityAndGain()
{
+ SensitivityChart.SetHeight(Constants.SensitivityChartTogetherHeight);
VelocityChart.Show();
GainChart.Show();
}
public void HideVelocityAndGain()
{
+ SensitivityChart.SetHeight(Constants.SensitivityChartAloneHeight);
VelocityChart.Hide();
GainChart.Hide();
}