fix typo in live vertial overflow

This commit is contained in:
Nathan Page 2020-11-01 12:10:40 -05:00
parent 20b2d2936b
commit 7514708a9d
1 changed files with 3 additions and 3 deletions

View File

@ -106,13 +106,13 @@ Vertical Overflow
By default, the live display will display ellipsis if the renderable is too large for the terminal. You can adjust this by setting the
``vertical_overflow`` argument on the :class:`~rich.live.Live` constructor.
- crop: Show renderable up to the terminal height. The rest is hidden
- ellipsis: Similar to crop except last line shows "...". This is the default behavior.
- crop: Show renderable up to the terminal height. The rest is hidden.
- ellipsis: Similar to crop except last line of the terminal is replaced with "...". This is the default behavior.
- visible: Will allow the whole renderable to be shown. Note that the display cannot be properly cleared in this mode.
.. note::
Once the live display stops on a non-transient renderable, the last frame will render as **visible** since it doesn't have to be cleared clear it.
Once the live display stops on a non-transient renderable, the last frame will render as **visible** since it doesn't have to be cleared.
Complex Renders
~~~~~~~~~~~~~~~