Prevent "Shorcut key: " appearing multiple times in tooltips

This commit is contained in:
David Bailey 2017-08-06 16:03:11 +01:00
parent e40445a9c4
commit 4c43fcfe4e

View File

@ -10,6 +10,7 @@ from anki.errors import DeckRenameError
import aqt
from anki.sound import clearAudioQueue
from anki.hooks import runHook
from copy import deepcopy
class DeckBrowser:
@ -340,7 +341,8 @@ where id > ?""", (self.mw.col.sched.dayCutoff-86400)*1000)
def _drawButtons(self):
buf = ""
for b in self.drawLinks:
drawLinks = deepcopy(self.drawLinks)
for b in drawLinks:
if b[0]:
b[0] = _("Shortcut key: %s") % shortcut(b[0])
buf += """