Set isShowingThumbnailInLockscreen as false by default
This commit is contained in:
@@ -171,7 +171,7 @@ class PlayerService : InvincibleService(), Player.Listener, PlaybackStatsListene
|
|||||||
isVolumeNormalizationEnabled = preferences.getBoolean(volumeNormalizationKey, false)
|
isVolumeNormalizationEnabled = preferences.getBoolean(volumeNormalizationKey, false)
|
||||||
isInvincibilityEnabled = preferences.getBoolean(isInvincibilityEnabledKey, false)
|
isInvincibilityEnabled = preferences.getBoolean(isInvincibilityEnabledKey, false)
|
||||||
isShowingThumbnailInLockscreen =
|
isShowingThumbnailInLockscreen =
|
||||||
preferences.getBoolean(isShowingThumbnailInLockscreenKey, true)
|
preferences.getBoolean(isShowingThumbnailInLockscreenKey, false)
|
||||||
|
|
||||||
val cacheEvictor = when (val size =
|
val cacheEvictor = when (val size =
|
||||||
preferences.getEnum(exoPlayerDiskCacheMaxSizeKey, ExoPlayerDiskCacheMaxSize.`2GB`)) {
|
preferences.getEnum(exoPlayerDiskCacheMaxSizeKey, ExoPlayerDiskCacheMaxSize.`2GB`)) {
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ fun AppearanceSettingsScreen() {
|
|||||||
)
|
)
|
||||||
var isShowingThumbnailInLockscreen by rememberPreference(
|
var isShowingThumbnailInLockscreen by rememberPreference(
|
||||||
isShowingThumbnailInLockscreenKey,
|
isShowingThumbnailInLockscreenKey,
|
||||||
true
|
false
|
||||||
)
|
)
|
||||||
|
|
||||||
Column(
|
Column(
|
||||||
|
|||||||
Reference in New Issue
Block a user