mirror of
https://github.com/ankitects/anki.git
synced 2025-09-25 09:16:38 -04:00
option to add new deck from studydeck
This commit is contained in:
parent
9068e68a66
commit
8830d66d4c
1 changed files with 10 additions and 0 deletions
|
@ -23,6 +23,10 @@ class StudyDeck(QDialog):
|
||||||
self.form.buttonBox.button(QDialogButtonBox.Cancel))
|
self.form.buttonBox.button(QDialogButtonBox.Cancel))
|
||||||
for b in buttons:
|
for b in buttons:
|
||||||
self.form.buttonBox.addButton(b, QDialogButtonBox.ActionRole)
|
self.form.buttonBox.addButton(b, QDialogButtonBox.ActionRole)
|
||||||
|
else:
|
||||||
|
b = QPushButton(_("Add"))
|
||||||
|
self.form.buttonBox.addButton(b, QDialogButtonBox.ActionRole)
|
||||||
|
b.connect(b, SIGNAL("clicked()"), self.onAddDeck)
|
||||||
if title:
|
if title:
|
||||||
self.setWindowTitle(title)
|
self.setWindowTitle(title)
|
||||||
if not names:
|
if not names:
|
||||||
|
@ -97,3 +101,9 @@ class StudyDeck(QDialog):
|
||||||
return self.accept()
|
return self.accept()
|
||||||
QDialog.reject(self)
|
QDialog.reject(self)
|
||||||
|
|
||||||
|
def onAddDeck(self):
|
||||||
|
n = getOnlyText(_("New deck name:"))
|
||||||
|
if n:
|
||||||
|
self.mw.col.decks.id(n)
|
||||||
|
self.name = n
|
||||||
|
QDialog.accept(self)
|
||||||
|
|
Loading…
Reference in a new issue