about summary refs log tree commit diff
path: root/website/sandbox/learnpianochords/src/Preferences.elm
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-04-19T17·23+0100
committerWilliam Carroll <wpcarro@gmail.com>2020-04-19T17·23+0100
commit14f11823ff9b08d627460bee96964dc64ae22dff (patch)
treec45c60625d5434d644488cdc0fcfdf0022be547f /website/sandbox/learnpianochords/src/Preferences.elm
parentd134db700f0445e1d851904145833dbf70ed48ac (diff)
Drop support for PracticeMode
For now, I'd like to support selecting keys and whitelisting inversions.
Diffstat (limited to 'website/sandbox/learnpianochords/src/Preferences.elm')
-rw-r--r--website/sandbox/learnpianochords/src/Preferences.elm10
1 files changed, 1 insertions, 9 deletions
diff --git a/website/sandbox/learnpianochords/src/Preferences.elm b/website/sandbox/learnpianochords/src/Preferences.elm
index 83d4f97e24d5..6594e6c52e71 100644
--- a/website/sandbox/learnpianochords/src/Preferences.elm
+++ b/website/sandbox/learnpianochords/src/Preferences.elm
@@ -150,13 +150,5 @@ render model =
             { tempo = model.tempo
             , handleInput = State.SetTempo
             }
-        , case model.practiceMode of
-            State.KeyMode ->
-                keyCheckboxes model
-
-            State.FineTuneMode ->
-                div []
-                    [ inversionCheckboxes model.whitelistedInversions
-                    , chordTypeCheckboxes model.whitelistedChordTypes
-                    ]
+        , keyCheckboxes model
         ]