Set isShowingThumbnailInLockscreen as false by default
This commit is contained in:
parent
45235acd5d
commit
105565afec
2 changed files with 2 additions and 2 deletions
|
@ -171,7 +171,7 @@ class PlayerService : InvincibleService(), Player.Listener, PlaybackStatsListene
|
|||
isVolumeNormalizationEnabled = preferences.getBoolean(volumeNormalizationKey, false)
|
||||
isInvincibilityEnabled = preferences.getBoolean(isInvincibilityEnabledKey, false)
|
||||
isShowingThumbnailInLockscreen =
|
||||
preferences.getBoolean(isShowingThumbnailInLockscreenKey, true)
|
||||
preferences.getBoolean(isShowingThumbnailInLockscreenKey, false)
|
||||
|
||||
val cacheEvictor = when (val size =
|
||||
preferences.getEnum(exoPlayerDiskCacheMaxSizeKey, ExoPlayerDiskCacheMaxSize.`2GB`)) {
|
||||
|
|
|
@ -56,7 +56,7 @@ fun AppearanceSettingsScreen() {
|
|||
)
|
||||
var isShowingThumbnailInLockscreen by rememberPreference(
|
||||
isShowingThumbnailInLockscreenKey,
|
||||
true
|
||||
false
|
||||
)
|
||||
|
||||
Column(
|
||||
|
|
Loading…
Reference in a new issue