From 2ff08ac813c29b4371c7f441fdb9229e92a6fe4c Mon Sep 17 00:00:00 2001 From: Alexander Capehart Date: Fri, 21 Feb 2025 13:07:13 -0700 Subject: [PATCH] ui: enable rounded covers by default Not removing the setting, round covers just seems to be more popular. --- README.md | 2 +- app/src/main/java/org/oxycblt/auxio/ui/UISettings.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index aaf00bb04..bd626cdf0 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ precise/original dates, sort tags, and more - Headset autoplay - Stylish widgets that automatically adapt to their size - Completely private and offline -- No rounded album covers (by default) +- No rounded album covers (if you want them) ## Permissions diff --git a/app/src/main/java/org/oxycblt/auxio/ui/UISettings.kt b/app/src/main/java/org/oxycblt/auxio/ui/UISettings.kt index 8bda28298..7a490347b 100644 --- a/app/src/main/java/org/oxycblt/auxio/ui/UISettings.kt +++ b/app/src/main/java/org/oxycblt/auxio/ui/UISettings.kt @@ -72,7 +72,7 @@ class UISettingsImpl @Inject constructor(@ApplicationContext context: Context) : } 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() { if (sharedPreferences.contains(OLD_KEY_ACCENT3)) {