Fix outline-right not being recognised

See #2446.
This commit is contained in:
Dave Pearson
2023-05-01 15:21:12 +01:00
parent d6f304f5d1
commit d6eb44bd19
2 changed files with 2 additions and 1 deletions

View File

@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Fixed `!important` not applying to `border` https://github.com/Textualize/textual/issues/2420
- Fixed `!important` not applying to `outline` https://github.com/Textualize/textual/issues/2420
- Fixed `outline-right` not being recognised https://github.com/Textualize/textual/issues/2446
## [0.22.3] - 2023-04-29

View File

@@ -531,7 +531,7 @@ class StylesBuilder:
def process_outline_top(self, name: str, tokens: list[Token]) -> None:
self._process_outline("top", name, tokens)
def process_parse_border_right(self, name: str, tokens: list[Token]) -> None:
def process_outline_right(self, name: str, tokens: list[Token]) -> None:
self._process_outline("right", name, tokens)
def process_outline_bottom(self, name: str, tokens: list[Token]) -> None: