diff --git a/content_scripts/sheet_actions.js b/content_scripts/sheet_actions.js index 2ca3a48..4a1ba5b 100644 --- a/content_scripts/sheet_actions.js +++ b/content_scripts/sheet_actions.js @@ -265,11 +265,13 @@ SheetActions = { // Creates a row below and begins editing it. openRowBelow() { this.clickMenu(this.menuItems.rowBelow); + UI.typeKey(KeyboardUtils.keyCodes.home); UI.typeKey(KeyboardUtils.keyCodes.enter); }, openRowAbove() { this.clickMenu(this.menuItems.rowAbove); + UI.typeKey(KeyboardUtils.keyCodes.home); UI.typeKey(KeyboardUtils.keyCodes.enter); },