mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
Fix footer highlight when pushing modal.
This commit is contained in:
@@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
### Changed
|
||||
|
||||
- `Placeholder` now sets its color cycle per app https://github.com/Textualize/textual/issues/2590
|
||||
- Footer now clears key highlight regardless of whether it's in the active screen or not https://github.com/Textualize/textual/issues/2606
|
||||
|
||||
### Removed
|
||||
|
||||
|
||||
@@ -79,8 +79,7 @@ class Footer(Widget):
|
||||
|
||||
def _on_leave(self, _: events.Leave) -> None:
|
||||
"""Clear any highlight when the mouse leaves the widget"""
|
||||
if self.screen.is_current:
|
||||
self.highlight_key = None
|
||||
self.highlight_key = None
|
||||
|
||||
def __rich_repr__(self) -> rich.repr.Result:
|
||||
yield from super().__rich_repr__()
|
||||
|
||||
Reference in New Issue
Block a user