Skip to content

Commit

Permalink
Merge remote-tracking branch 'patrickmollohan/more-kb-shortcuts'
Browse files Browse the repository at this point in the history
  • Loading branch information
binary1230 committed Nov 18, 2023
2 parents 98c927d + bfd2ca0 commit caf7590
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions DiztinGUIsh/window/MainWindow.MainTable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,12 @@ private void table_KeyDown(object sender, KeyEventArgs e)
table.CurrentCell = table.Rows[table.CurrentCell.RowIndex].Cells[12];
table.BeginEdit(true);
break;
case Keys.Enter:
table.BeginEdit(true);
break;
case Keys.Delete:
table.CurrentCell.Value = null;
break;
}

e.Handled = true;
Expand Down

0 comments on commit caf7590

Please sign in to comment.