Skip to content

Commit

Permalink
calc: fix Ctrl+Space to select a column
Browse files Browse the repository at this point in the history
Signed-off-by: Parth Raiyani <[email protected]>
Change-Id: Icc13560fbb6754ce4c5fc73cbacf2f4dcc41e829
  • Loading branch information
rparth07 committed Dec 15, 2024
1 parent b2679c5 commit 736be7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion browser/src/map/handler/Map.KeyboardShortcuts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ keyboardShortcuts.definitions.set('default', new Array<ShortcutDescriptor>(
new ShortcutDescriptor('spreadsheet', 'keydown', Mod.CTRL | Mod.SHIFT, 'PageUp', undefined, undefined),
new ShortcutDescriptor('spreadsheet', 'keydown', Mod.CTRL | Mod.SHIFT, 'PageDown', undefined, undefined),
new ShortcutDescriptor('spreadsheet', 'keydown', 0, 'F5', null, null, null),

new ShortcutDescriptor('spreadsheet', 'keydown', Mod.CTRL, ' ', '.uno:SelectColumn', null, null),

new ShortcutDescriptor('text', 'keydown', 0, 'F2', null, null, null),
new ShortcutDescriptor('text', 'keydown', 0, 'F5', null, null, null),
Expand Down

0 comments on commit 736be7c

Please sign in to comment.