ui: enable rounded covers by default
Not removing the setting, round covers just seems to be more popular.
This commit is contained in:
parent
db4e927780
commit
2ff08ac813
2 changed files with 2 additions and 2 deletions
|
@ -61,7 +61,7 @@ precise/original dates, sort tags, and more
|
||||||
- Headset autoplay
|
- Headset autoplay
|
||||||
- Stylish widgets that automatically adapt to their size
|
- Stylish widgets that automatically adapt to their size
|
||||||
- Completely private and offline
|
- Completely private and offline
|
||||||
- No rounded album covers (by default)
|
- No rounded album covers (if you want them)
|
||||||
|
|
||||||
## Permissions
|
## Permissions
|
||||||
|
|
||||||
|
|
|
@ -72,7 +72,7 @@ class UISettingsImpl @Inject constructor(@ApplicationContext context: Context) :
|
||||||
}
|
}
|
||||||
|
|
||||||
override val roundMode: Boolean
|
override val roundMode: Boolean
|
||||||
get() = sharedPreferences.getBoolean(getString(R.string.set_key_round_mode), false)
|
get() = sharedPreferences.getBoolean(getString(R.string.set_key_round_mode), true)
|
||||||
|
|
||||||
override fun migrate() {
|
override fun migrate() {
|
||||||
if (sharedPreferences.contains(OLD_KEY_ACCENT3)) {
|
if (sharedPreferences.contains(OLD_KEY_ACCENT3)) {
|
||||||
|
|
Loading…
Reference in a new issue