Skip to content

Commit

Permalink
Merge pull request #472 from revolist/471-bug-excel-like-row-editing-…
Browse files Browse the repository at this point in the history
…with-tab-does-not-work-in-v482

fix: #471
  • Loading branch information
revolist authored Jul 19, 2024
2 parents 61fd7c8 + df30397 commit 39cfd61
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/overlay/keyboard.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ export class KeyboardService {
case codesLetter.ESCAPE:
this.sv.cancel();
break;
case codesLetter.TAB:
this.keyChangeSelection(e, canRange);
break;
}
return;
}
Expand All @@ -78,7 +81,7 @@ export class KeyboardService {

// tab key means same as arrow right
if (codesLetter.TAB === e.code) {
await this.keyChangeSelection(e, canRange);
this.keyChangeSelection(e, canRange);
return;
}

Expand Down

0 comments on commit 39cfd61

Please sign in to comment.