Merge branch 'main' of github.com:Textualize/textual into list-view

This commit is contained in:
Darren Burns
2022-11-15 15:56:42 +00:00
43 changed files with 1624 additions and 889 deletions

1
docs/api/walk.md Normal file
View File

@@ -0,0 +1 @@
::: textual.walk

View File

@@ -23,7 +23,7 @@ class BindingApp(App):
bar = Bar(color)
bar.styles.background = Color.parse(color).with_alpha(0.5)
self.mount(bar)
self.call_later(self.screen.scroll_end, animate=False)
self.call_after_refresh(self.screen.scroll_end, animate=False)
if __name__ == "__main__":

View File

@@ -46,6 +46,6 @@ width: auto
```python
self.styles.height = 10
self.styles.height = "50%
self.styles.height = "50%"
self.styles.height = "auto"
```