Add a vertical_overflow='crop_above'
as an option to Live()
#3637
+10
−1
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Type of changes
Checklist
Description
As described in #3263,
Live(vertical_overflow="visible")
has the unfortunate behavior of duplicating content when the content update exceeds the height of the console. This is especially unfortunate for a few reasons:transient=True
doesn't help to avoid this).vertical_overflow
options that allows for the "newest" content to be visible.This PR proposes a new option
vertical_overflow="crop_above"
which does the reverse ofvertical_overflow="crop"
(it displays only the bottom portion of the content instead of the top). It has the nice behavior of always making the "newest" content visible, but without the downside of duplicated content. Here's a demo:rich-crop-above.mp4
And note that if you change
vertical_overflow="crop_above"
tovertical_overflow="visible"
, this is the behavior:rich-visible.mp4
I'm happy to write tests or anything else you need if you like this overall direction