Settings: remove Bluetooth related text from DNS-dialog

* String ´bluetooth_select_a2dp_codec_type_help_info´
   is set on the ´preference_widget_dialog_summary´-dialog
   by default.

Test: make Settings, visual observation
Signed-off-by: Timi Rautamäki <timi.rautamaki@gmail.com>
Change-Id: I6d403f231797bcf5b10bf726cca4e128f4c517ea
This commit is contained in:
Timi Rautamäki
2021-05-16 20:38:39 +02:00
parent 7469890c87
commit a84987564b

View File

@@ -189,6 +189,8 @@ public class PrivateDnsModeDialogPreference extends CustomDialogPreferenceCompat
if (linkInfo.isActionable()) { if (linkInfo.isActionable()) {
helpTextView.setText(AnnotationSpan.linkify( helpTextView.setText(AnnotationSpan.linkify(
context.getText(R.string.private_dns_help_message), linkInfo)); context.getText(R.string.private_dns_help_message), linkInfo));
} else {
helpTextView.setText("");
} }
} }