From b6bf4d661c4578a596f249f1a21ee588be6e4262 Mon Sep 17 00:00:00 2001
From: Andreas Gohr <andi@splitbrain.org>
Date: Mon, 9 Aug 2010 21:55:45 +0200
Subject: [PATCH] remove accesskey once a JS handler was registered FS#2007

---
 lib/scripts/hotkeys.js | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/lib/scripts/hotkeys.js b/lib/scripts/hotkeys.js
index c340c7f02..356b691ea 100644
--- a/lib/scripts/hotkeys.js
+++ b/lib/scripts/hotkeys.js
@@ -54,6 +54,7 @@ function Hotkeys() {
                 t.addShortcut(t.modifier + '+' + a.accessKey, function() {
                     a.click();
                 });
+                a.accessKey = '';
             }
         });
 
@@ -67,6 +68,7 @@ function Hotkeys() {
                 t.addShortcut(t.modifier + '+' + i.accessKey, function() {
                     i.click();
                 });
+                i.accessKey = '';
             }
         });
 
@@ -80,6 +82,7 @@ function Hotkeys() {
                 t.addShortcut(t.modifier + '+' + b.accessKey, function() {
                     b.click();
                 });
+                b.accessKey = '';
             }
         });
 
-- 
GitLab