Skip to content

Commit 2caeb59

Browse files
author
Margaret Matocha
committed
Updated initial instancing of Bitmap to non-zero size
1 parent 646b46d commit 2caeb59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_display_text/label.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def __init__(
114114
self._background_palette = displayio.Palette(1)
115115
self.append(
116116
displayio.TileGrid(
117-
displayio.Bitmap(0, 0, 1), pixel_shader=self._background_palette
117+
displayio.Bitmap(1, 1, 1), pixel_shader=self._background_palette
118118
)
119119
) # initialize with a blank tilegrid placeholder for background
120120

0 commit comments

Comments
 (0)