mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-25 07:23:03 +00:00
Compose fonts require bundled fonts
This commit is contained in:
parent
0fcbfab4cc
commit
f0488d26e7
1 changed files with 2 additions and 2 deletions
|
@ -206,7 +206,7 @@ public class FragmentOptionsSend extends FragmentBase implements SharedPreferenc
|
|||
swReplyMove = view.findViewById(R.id.swReplyMove);
|
||||
swReplyMoveInbox = view.findViewById(R.id.swReplyMoveInbox);
|
||||
|
||||
List<StyleHelper.FontDescriptor> fonts = StyleHelper.getFonts(getContext());
|
||||
List<StyleHelper.FontDescriptor> fonts = StyleHelper.getFonts(getContext(), false);
|
||||
|
||||
List<CharSequence> fn = new ArrayList<>();
|
||||
fn.add("-");
|
||||
|
@ -792,7 +792,7 @@ public class FragmentOptionsSend extends FragmentBase implements SharedPreferenc
|
|||
btnComposeColor.setColor(prefs.getInt("compose_color", Color.TRANSPARENT));
|
||||
|
||||
String compose_font = prefs.getString("compose_font", "");
|
||||
List<StyleHelper.FontDescriptor> fonts = StyleHelper.getFonts(getContext());
|
||||
List<StyleHelper.FontDescriptor> fonts = StyleHelper.getFonts(getContext(), false);
|
||||
for (int pos = 0; pos < fonts.size(); pos++) {
|
||||
StyleHelper.FontDescriptor font = fonts.get(pos);
|
||||
if (font.type.equals(compose_font)) {
|
||||
|
|
Loading…
Reference in a new issue