mirror of
https://github.com/Relintai/godot-resources-as-sheets-plugin.git
synced 2025-02-21 08:34:26 +01:00
Fix Select All Cells in Column not working
This commit is contained in:
parent
e8f4d88e93
commit
0b51bfacb7
@ -451,7 +451,7 @@ func select_cells_to(cell : Control):
|
|||||||
func select_column(column_index : int):
|
func select_column(column_index : int):
|
||||||
deselect_all_cells()
|
deselect_all_cells()
|
||||||
select_cell(get_node(path_table_root).get_child(column_index))
|
select_cell(get_node(path_table_root).get_child(column_index))
|
||||||
select_cells_to(get_node(path_table_root).get_child(column_index + columns.size() * (rows.size() - 1)))
|
select_cells_to(get_node(path_table_root).get_child(column_index + columns.size() * (last_row - first_row - 1)))
|
||||||
|
|
||||||
|
|
||||||
func hide_column(column_index : int):
|
func hide_column(column_index : int):
|
||||||
|
Loading…
Reference in New Issue
Block a user