Fix OLED ImageEntry

Fixed a silly oversight that was preventing image entries from working
This commit is contained in:
regicidal.plutophage 2023-03-27 01:25:00 +03:00 committed by xs5871
parent 0992bfb962
commit bc5fb9dc9e

View File

@ -68,7 +68,7 @@ class ImageEntry:
def __init__(self, x=0, y=0, image='', layer=None, side=None):
self.x = x
self.y = y
self.image = image
self.image = displayio.OnDiskBitmap(image)
self.layer = layer
self.side = side
if side == 'L':