Browse Source

Only set the dialog title if not already set in the extension (#9858)

Only set the dialog title if not already set in the extension.
Alessandro Jean 1 year ago
parent
commit
eeeaae4570

+ 1 - 1
app/src/main/java/eu/kanade/tachiyomi/ui/browse/extension/details/SourcePreferencesScreen.kt

@@ -147,7 +147,7 @@ class SourcePreferencesFragment : PreferenceFragmentCompat() {
         sourceScreen.forEach { pref ->
             pref.isIconSpaceReserved = false
             pref.isSingleLineTitle = false
-            if (pref is DialogPreference) {
+            if (pref is DialogPreference && pref.dialogTitle.isNullOrEmpty()) {
                 pref.dialogTitle = pref.title
             }