X-Git-Url: https://git.ayoreis.com/hackapet/Adafruit_Blinka_Displayio.git/blobdiff_plain/a94203addedf0b7d4e5885848117b10bf6fa9fe1..2fe9345ee8e494a5b8733153b5f38f2d52535c1e:/displayio/_displaycore.py diff --git a/displayio/_displaycore.py b/displayio/_displaycore.py index a50d094..ffdc9e4 100644 --- a/displayio/_displaycore.py +++ b/displayio/_displaycore.py @@ -151,7 +151,11 @@ class _DisplayCore: if self._current_group is not None: self._current_group._update_transform(self._transform) - def show(self, root_group: Group) -> bool: + def get_root_group(self): + """The root group on the display.""" + return self._current_group + + def set_root_group(self, root_group: Group) -> bool: # pylint: disable=protected-access """