diff options
| author | Jacob Palecki <[email protected]> | 2021-01-18 22:21:04 -0800 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2021-01-18 22:21:04 -0800 |
| commit | 3bf6b041ee4b39def0200d238936322ce01a1afb (patch) | |
| tree | 5115bf2ded280a771be8ca5c9ccea345c46a8074 | |
| parent | Add timer to mousewatcher for better low-end fidelity (diff) | |
| download | rawaccel-3bf6b041ee4b39def0200d238936322ce01a1afb.tar.xz rawaccel-3bf6b041ee4b39def0200d238936322ce01a1afb.zip | |
Hide offset for power type
| -rw-r--r-- | grapher/Layouts/PowerLayout.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grapher/Layouts/PowerLayout.cs b/grapher/Layouts/PowerLayout.cs index 1911813..da7d5bb 100644 --- a/grapher/Layouts/PowerLayout.cs +++ b/grapher/Layouts/PowerLayout.cs @@ -15,7 +15,7 @@ namespace grapher.Layouts ScaleLayout = new OptionLayout(true, Scale); CapLayout = new OptionLayout(true, Cap); WeightLayout = new OptionLayout(true, Weight); - OffsetLayout = new OptionLayout(true, Offset); + OffsetLayout = new OptionLayout(false, string.Empty); LimitLayout = new OptionLayout(false, string.Empty); ExponentLayout = new OptionLayout(true, Exponent); MidpointLayout = new OptionLayout(false, string.Empty); |