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:
parent
d1c956401c
commit
eeeaae4570
1 changed files with 1 additions and 1 deletions
|
@ -147,7 +147,7 @@ class SourcePreferencesFragment : PreferenceFragmentCompat() {
|
||||||
sourceScreen.forEach { pref ->
|
sourceScreen.forEach { pref ->
|
||||||
pref.isIconSpaceReserved = false
|
pref.isIconSpaceReserved = false
|
||||||
pref.isSingleLineTitle = false
|
pref.isSingleLineTitle = false
|
||||||
if (pref is DialogPreference) {
|
if (pref is DialogPreference && pref.dialogTitle.isNullOrEmpty()) {
|
||||||
pref.dialogTitle = pref.title
|
pref.dialogTitle = pref.title
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue