X-Git-Url: https://git.ayoreis.com/hackapet/Adafruit_Blinka_Displayio.git/blobdiff_plain/dee4847d42579d1e08b4f6deb17b0b380115189f..7c0bd2f50de1167e04a78ea0889fb932ceaec4c3:/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 """