Skip to content

Commit e581c69

Browse files
committed
feat: make ToggleRowSelection public
1 parent 611c436 commit e581c69

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

SharpConsoleUI/Controls/TableControl/TableControl.Selection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ public List<int> GetSelectedIndices()
303303
/// <summary>
304304
/// Toggles selection of a row in multi-select mode (Ctrl+Click).
305305
/// </summary>
306-
internal void ToggleRowSelection(int displayIndex)
306+
public void ToggleRowSelection(int displayIndex)
307307
{
308308
if (!_multiSelectEnabled) return;
309309
if (_selectedRowIndices.Contains(displayIndex))

0 commit comments

Comments
 (0)