Merge branch 'main' into no-container-scroll

This commit is contained in:
Dave Pearson
2023-04-24 11:35:47 +01:00
committed by GitHub
63 changed files with 54 additions and 255 deletions

View File

@@ -1,10 +1,8 @@
"""
Simulates a screenshot of the Textual devtools
"""
from textual.app import App
from textual.devtools.renderables import DevConsoleHeader
from textual.widgets import Static

View File

@@ -1,5 +1,5 @@
from textual.app import App, ComposeResult
from textual.widgets import Static, Header
from textual.widgets import Header, Static
TEXT = """\
Docking a widget removes it from the layout and fixes its position, aligned to either the top, right, bottom, or left edges of a container.

View File

@@ -45,8 +45,6 @@ class ListViewExample(App):
)
yield Footer()
```
"""