mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
remove suspended from deck properties
This commit is contained in:
parent
efeb3786bb
commit
35e9356d82
1 changed files with 0 additions and 4 deletions
|
@ -51,7 +51,6 @@ class DeckProperties(QDialog):
|
|||
self.dialog.highPriority.setText(self.d.highPriority)
|
||||
self.dialog.medPriority.setText(self.d.medPriority)
|
||||
self.dialog.lowPriority.setText(self.d.lowPriority)
|
||||
self.dialog.postponing.setText(self.d.suspended)
|
||||
# scheduling
|
||||
for type in ("hard", "mid", "easy"):
|
||||
v = getattr(self.d, type + "IntervalMin")
|
||||
|
@ -260,9 +259,6 @@ class DeckProperties(QDialog):
|
|||
self.updateField(self.d,
|
||||
"lowPriority",
|
||||
unicode(self.dialog.lowPriority.text()))
|
||||
self.updateField(self.d,
|
||||
"suspended",
|
||||
unicode(self.dialog.postponing.text()))
|
||||
prioritiesChanged = was != self.d.modified
|
||||
# sources
|
||||
d = {}
|
||||
|
|
Loading…
Reference in a new issue