Merge pull request #190 from ankitest/patch-12
Let users extend their bottom buttons functions
This commit is contained in:
commit
7d351346ab
@ -333,14 +333,15 @@ where id > ?""", (self.mw.col.sched.dayCutoff-86400)*1000)
|
|||||||
# Top buttons
|
# Top buttons
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
def _drawButtons(self):
|
drawLinks = [
|
||||||
links = [
|
|
||||||
["", "shared", _("Get Shared")],
|
["", "shared", _("Get Shared")],
|
||||||
["", "create", _("Create Deck")],
|
["", "create", _("Create Deck")],
|
||||||
["Ctrl+I", "import", _("Import File")],
|
["Ctrl+I", "import", _("Import File")], # Ctrl+I works from menu
|
||||||
]
|
]
|
||||||
|
|
||||||
|
def _drawButtons(self):
|
||||||
buf = ""
|
buf = ""
|
||||||
for b in links:
|
for b in drawLinks:
|
||||||
if b[0]:
|
if b[0]:
|
||||||
b[0] = _("Shortcut key: %s") % shortcut(b[0])
|
b[0] = _("Shortcut key: %s") % shortcut(b[0])
|
||||||
buf += """
|
buf += """
|
||||||
|
Loading…
Reference in New Issue
Block a user