diff options
| author | Jacob Palecki <[email protected]> | 2021-01-12 09:25:48 -0800 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2021-01-12 09:25:48 -0800 |
| commit | 784f7cab713640f4a13880ebc3c5abc10894d23c (patch) | |
| tree | 5504f514c18e6c41c690996eb53974d2efd3fcf4 /grapher/Models/Charts/ChartState/ChartState.cs | |
| parent | Directionality menu progress (diff) | |
| download | rawaccel-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.cs | 2 |
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(); } |