X-Git-Url: https://git.ayoreis.com/hackapet/Adafruit_Blinka_Displayio.git/blobdiff_plain/5697c1261805044cd15a8e5343ca8872d341991f..7c0bd2f50de1167e04a78ea0889fb932ceaec4c3:/displayio/_displaycore.py diff --git a/displayio/_displaycore.py b/displayio/_displaycore.py index afb92c8..ffdc9e4 100644 --- a/displayio/_displaycore.py +++ b/displayio/_displaycore.py @@ -18,7 +18,7 @@ Super class of the display classes """ -__version__ = "0.0.0-auto.0" +__version__ = "0.0.0+auto.0" __repo__ = "https://github.com/adafruit/Adafruit_Blinka_Displayio.git" @@ -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 """