mirror of
https://github.com/ankitects/anki.git
synced 2025-11-12 07:37:11 -05:00
Let users extend their bottom buttons functions
Like this:
```
aqt.deckbrowser.DeckBrowser.drawLinks.extend([
["", "rebuildAll", _("Rebuild All")],
["", "emptyAll", _("Empty All")],
])
```
This commit is contained in:
parent
e8777e8630
commit
5bfd93842c
1 changed files with 6 additions and 5 deletions
|
|
@ -333,14 +333,15 @@ where id > ?""", (self.mw.col.sched.dayCutoff-86400)*1000)
|
|||
# Top buttons
|
||||
######################################################################
|
||||
|
||||
def _drawButtons(self):
|
||||
links = [
|
||||
drawLinks = [
|
||||
["", "shared", _("Get Shared")],
|
||||
["", "create", _("Create Deck")],
|
||||
["Ctrl+I", "import", _("Import File")],
|
||||
]
|
||||
["Ctrl+I", "import", _("Import File")], # Ctrl+I works from menu
|
||||
]
|
||||
|
||||
def _drawButtons(self):
|
||||
buf = ""
|
||||
for b in links:
|
||||
for b in drawLinks:
|
||||
if b[0]:
|
||||
b[0] = _("Shortcut key: %s") % shortcut(b[0])
|
||||
buf += """
|
||||
|
|
|
|||
Loading…
Reference in a new issue