diff --git a/frappe/public/js/frappe/form/layout.js b/frappe/public/js/frappe/form/layout.js index b425bfd475..0b10d13548 100644 --- a/frappe/public/js/frappe/form/layout.js +++ b/frappe/public/js/frappe/form/layout.js @@ -532,12 +532,12 @@ frappe.ui.form.Layout = class Layout { setup_tooltip_events() { $(document).on("keydown", (e) => { - if (e.metaKey || e.ctrlKey) { + if (e.altKey) { this.wrapper.addClass("show-tooltip"); } }); $(document).on("keyup", (e) => { - if (!e.metaKey || !e.ctrlKey) { + if (!e.altKey) { this.wrapper.removeClass("show-tooltip"); } });