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.
This commit is contained in:
Alessandro Jean 2023-08-19 17:47:20 -03:00 committed by GitHub
parent d1c956401c
commit eeeaae4570
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
}