Skip to content

Commit 9a4a67b

Browse files
About app: emoji=False is now the default
1 parent 1504223 commit 9a4a67b

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

  • internal_filesystem/builtin/apps/com.micropythonos.about/assets

internal_filesystem/builtin/apps/com.micropythonos.about/assets/about.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,12 @@ class About(Activity):
1515
def onCreate(self):
1616
self._uptime_label = None
1717
self._timer = None
18-
self._header_font = FontManager.getFont(size=14, family="Montserrat", emoji=False)
19-
self._body_font = FontManager.getFont(size=12, family="Montserrat", emoji=False)
18+
self._header_font = FontManager.getFont(size=14, family="Montserrat")
19+
self._body_font = FontManager.getFont(size=12, family="Montserrat")
2020
screen = lv.obj()
2121
screen.set_style_border_width(0, lv.PART.MAIN)
2222
screen.set_flex_flow(lv.FLEX_FLOW.COLUMN)
2323
screen.set_style_pad_all(DisplayMetrics.pct_of_width(2), lv.PART.MAIN)
24-
# Make the screen focusable so it can be scrolled with the arrow keys
25-
lv.group_get_default().add_obj(screen)
2624

2725
# Logo
2826
img = lv.image(screen)

0 commit comments

Comments
 (0)