Scroll to center when tab is clicked.

Related comment: https://github.com/Textualize/textual/issues/2256#issuecomment-1505551728
This commit is contained in:
Rodrigo Girão Serrão
2023-04-12 22:25:33 +01:00
parent c249548c43
commit 663b09736e
3 changed files with 6 additions and 5 deletions

View File

@@ -33,7 +33,7 @@ class MyApp(App[None]):
yield Label(("SPAM\n" * 59)[:-1])
def key_s(self) -> None:
self.query_one("#bullseye").scroll_to_center()
self.screen.scroll_to_center(self.query_one("#bullseye"))
if __name__ == "__main__":