mirror of https://github.com/M66B/FairEmail.git
Small layout improvement
This commit is contained in:
parent
a56ccd4fb3
commit
1eec0408ec
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue