X-Git-Url: https://git.ayoreis.com/hackapet/Adafruit_Blinka_Displayio.git/blobdiff_plain/e77b9821229bee5e42862bc0d53c1dab2ae0029a..6dd6b7f805e60143548372ad59898d9448f98a47:/displayio/_display.py?ds=sidebyside diff --git a/displayio/_display.py b/displayio/_display.py index a3da5c5..0a82e6e 100644 --- a/displayio/_display.py +++ b/displayio/_display.py @@ -251,6 +251,7 @@ class Display: default CircuitPython terminal will be shown. :param Group group: The group to show. + """ if group is None: group = circuitpython_splash @@ -534,10 +535,12 @@ class Display: @property def root_group(self) -> Group: - """The root group on the display. + """ + The root group on the display. If the root group is set to `displayio.CIRCUITPYTHON_TERMINAL`, the default CircuitPython terminal will be shown. - If the root group is set to ``None``, no output will be shown.""" + If the root group is set to ``None``, no output will be shown. + """ return self._core.current_group @root_group.setter