Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4e97c1a9 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "font_fallback, use language prio only if id prio not set" into main

parents 1cce133a 4c3d3e11
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -123,7 +123,7 @@ class FallbackOrder:
    priority = None
    if family.id:
      priority = self.priority.get('id:%s' % family.id)
    if not priority and family.lang:
    if priority is None and family.lang:
      priority = self.priority.get('lang:%s' % family.lang)

    assert priority is not None, 'Unknown priority for %s' % family