From fe5b37a327454c24c309688d13845aa9f2e29c60 Mon Sep 17 00:00:00 2001 From: TomJGooding <101601846+TomJGooding@users.noreply.github.com> Date: Mon, 9 Dec 2024 10:19:14 +0000 Subject: [PATCH] docs(datatable): remove outdated cursor info (#5355) --- docs/widgets/data_table.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/widgets/data_table.md b/docs/widgets/data_table.md index 321f9ac8e4..9b914f1e9e 100644 --- a/docs/widgets/data_table.md +++ b/docs/widgets/data_table.md @@ -77,8 +77,6 @@ and the [`hover_coordinate`][textual.widgets.DataTable.hover_coordinate] reactiv then emits the [`CellHighlighted`][textual.widgets.DataTable.CellHighlighted] and [`CellSelected`][textual.widgets.DataTable.CellSelected] events. -A new table starts with no cell highlighted, i.e., row and column are zero. You can force the first item to highlight with `move_cursor(row=1, column=1)`. All row and column indexes start at one. - === "Column Cursor" ```{.textual path="docs/examples/widgets/data_table_cursors.py"}