File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -162,9 +162,6 @@ def show_splash(self):
162
162
"""
163
163
if self .debug :
164
164
return
165
- glyphs = b'0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-!,. "\' ?!'
166
- self .arial16 .load_glyphs (glyphs )
167
- self .arial12 .load_glyphs (glyphs )
168
165
with open ('blinka-pyloton.bmp' , 'rb' ) as bitmap_file :
169
166
bitmap1 = displayio .OnDiskBitmap (bitmap_file )
170
167
@@ -194,6 +191,10 @@ def _load_fonts(self):
194
191
self .arial12 = bitmap_font .load_font ("/fonts/Arial-12.bdf" )
195
192
self .arial16 = bitmap_font .load_font ("/fonts/Arial-16.bdf" )
196
193
self .arial24 = bitmap_font .load_font ("/fonts/Arial-Bold-24.bdf" )
194
+ glyphs = b'0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-!,. "\' ?!'
195
+ self .arial12 .load_glyphs (glyphs )
196
+ self .arial16 .load_glyphs (glyphs )
197
+ self .arial24 .load_glyphs (glyphs )
197
198
198
199
199
200
def _status_update (self , message ):
You can’t perform that action at this time.
0 commit comments