diff options
| author | Jacob Palecki <[email protected]> | 2020-09-22 13:08:31 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-09-22 13:08:31 -0700 |
| commit | 45285413a94c9c081098c672e69e9811ac5262b7 (patch) | |
| tree | 4c89d57a30226e2d1c007547fa5cf787118f3158 /grapher/Layouts | |
| parent | Fix bug & rename x axis to input speed (diff) | |
| download | rawaccel-45285413a94c9c081098c672e69e9811ac5262b7.tar.xz rawaccel-45285413a94c9c081098c672e69e9811ac5262b7.zip | |
Rename experiment two to motivity
Diffstat (limited to 'grapher/Layouts')
| -rw-r--r-- | grapher/Layouts/MotivityLayout.cs (renamed from grapher/Layouts/ExperimentOneLayout.cs) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/grapher/Layouts/ExperimentOneLayout.cs b/grapher/Layouts/MotivityLayout.cs index ad6f61a..dfef2de 100644 --- a/grapher/Layouts/ExperimentOneLayout.cs +++ b/grapher/Layouts/MotivityLayout.cs @@ -7,13 +7,13 @@ using System.Threading.Tasks; namespace grapher.Layouts { - public class ExperimentOneLayout : LayoutBase + public class MotivityLayout : LayoutBase { - public ExperimentOneLayout() + public MotivityLayout() : base() { - Name = "Experiment 1"; - Index = (int)AccelMode.experimentone; + Name = "Motivity"; + Index = (int)AccelMode.motivity; LogarithmicCharts = true; AccelLayout = new OptionLayout(true, Acceleration); |