Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nxoim committed Sep 20, 2024
1 parent ec82954 commit c2af76a
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ class UserSettingsController(private val dataStore: DataStore<Preferences>) {
dataStore.get(blacklistedFoldersKey, "").split(",")
)
private set
var hideLyrics by mutableStateOf(false)

var hideLyrics by mutableStateOf(dataStore.get(hideLyricsKey, false))
private set

var includeTranslation by mutableStateOf(
dataStore.get(includeTranslationKey, false)
)
var includeTranslation by mutableStateOf(dataStore.get(includeTranslationKey, false))
private set

var pureBlack by mutableStateOf(false)
var pureBlack by mutableStateOf(dataStore.get(pureBlackKey, false))
private set

var disableMarquee by mutableStateOf(dataStore.get(disableMarqueeKey, false))
Expand Down

0 comments on commit c2af76a

Please sign in to comment.