diff --git a/docs/examples/guide/input/mouse01.tcss b/docs/examples/guide/input/mouse01.tcss index a37245093e..bdc184c6a9 100644 --- a/docs/examples/guide/input/mouse01.tcss +++ b/docs/examples/guide/input/mouse01.tcss @@ -2,7 +2,7 @@ Screen { layers: log ball; } -TextLog { +RichLog { layer: log; } diff --git a/src/textual/widgets/_log.py b/src/textual/widgets/_log.py index 60e343c6a3..0f4a4bc6be 100644 --- a/src/textual/widgets/_log.py +++ b/src/textual/widgets/_log.py @@ -75,7 +75,7 @@ def __init__( @property def lines(self) -> Sequence[str]: - """The raw lines in the TextLog. + """The raw lines in the Log. Note that this attribute is read only. Changing the lines will not update the Log's contents.