WIP - config tui screen

This commit is contained in:
rajeevrajeshuni 2025-11-29 17:43:15 +05:30
parent eb17ab5020
commit 99d0b82c8e

View file

@ -242,6 +242,16 @@ class ConfigTUIScreen(Screen):
table.focus()
def action_cursor_up(self) -> None:
"""Move cursor up in the table."""
table = self.query_one(DataTable)
table.action_cursor_up()
def action_cursor_down(self) -> None:
"""Move cursor down in the table."""
table = self.query_one(DataTable)
table.action_cursor_down()
def action_go_back(self) -> None:
"""Go back to main menu."""
self.app.pop_screen()