Skip to content

Commit

Permalink
feat(melody): Enable melody by default on Android.
Browse files Browse the repository at this point in the history
  • Loading branch information
sampie777 committed Jan 9, 2023
1 parent 36804ac commit bb2c85f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions source/gui/screens/settings/SettingsScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ const SettingsScreen: React.FC = () => {
isVisible={showAdvancedSettings} />

<Header title={"Song melody"} isVisible={showAdvancedSettings} />
<SettingSwitchComponent title={"Show melody (experimental)"}
description={"Show song melody above lyrics. This is a work in progress and might not function as it should."}
<SettingSwitchComponent title={"Enable melodies (experimental)"}
description={"Song melody can be shown above the lyrics. This is a work in progress and might not function as it should."}
keyName={"showMelody"}
isVisible={showAdvancedSettings}
onPress={((setValue, key, newValue) => {
Expand Down
2 changes: 1 addition & 1 deletion source/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class SettingsClass extends SettingsBaseClass {
coloredVerseTitles = Math.random() > 0.5;
highlightSelectedVerses = true;
animateAddedToSongList = true;
showMelody = false;
showMelody = Platform.OS === "android";
showMelodyForAllVerses = false;
longPressForMelodyMenu = true;
melodyShowedTimes = 0;
Expand Down

0 comments on commit bb2c85f

Please sign in to comment.