Small layout improvement

This commit is contained in:
M66B 2023-06-01 08:31:25 +02:00
parent a56ccd4fb3
commit 1eec0408ec
1 changed files with 2 additions and 1 deletions

View File

@ -407,7 +407,8 @@ public class AdapterAttachment extends RecyclerView.Adapter<AdapterAttachment.Vi
tvFile.setText(context.getString(R.string.title_ask_view_file, attachment.name));
tvType.setText(attachment.getMimeType());
cbNotAgainType.setText(context.getString(R.string.title_no_ask_for_again, "." + extension));
String msg = context.getString(R.string.title_no_ask_for_again, "<b>" + "." + extension + "</b>");
cbNotAgainType.setText(HtmlHelper.fromHtml(msg, context));
cbNotAgainType.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override