Merge pull request #38960 from sokumon/keyboard-form
This commit is contained in:
commit
8df5ca026b
1 changed files with 2 additions and 2 deletions
|
|
@ -139,7 +139,7 @@ frappe.ui.form.Form = class FrappeForm {
|
|||
add_form_keyboard_shortcuts() {
|
||||
// Navigate to next record
|
||||
frappe.ui.keys.add_shortcut({
|
||||
shortcut: "shift+ctrl+>",
|
||||
shortcut: "shift+ctrl+right",
|
||||
action: () => this.navigate_records(0),
|
||||
page: this.page,
|
||||
description: __("Go to next record"),
|
||||
|
|
@ -149,7 +149,7 @@ frappe.ui.form.Form = class FrappeForm {
|
|||
|
||||
// Navigate to previous record
|
||||
frappe.ui.keys.add_shortcut({
|
||||
shortcut: "shift+ctrl+<",
|
||||
shortcut: "shift+ctrl+left",
|
||||
action: () => this.navigate_records(1),
|
||||
page: this.page,
|
||||
description: __("Go to previous record"),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue