Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion adafruit_display_text/label.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,8 @@ def _update_text(
self._text = new_text
self._boundingbox = (left, top, left + right, bottom - top)

self._update_background_color(self._background_color)
if self.background_color:
self._update_background_color(self._background_color)

@property
def bounding_box(self):
Expand Down