mirror of
https://github.com/ankitects/anki.git
synced 2025-11-15 09:07:11 -05: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.highPriority.setText(self.d.highPriority)
|
||||||
self.dialog.medPriority.setText(self.d.medPriority)
|
self.dialog.medPriority.setText(self.d.medPriority)
|
||||||
self.dialog.lowPriority.setText(self.d.lowPriority)
|
self.dialog.lowPriority.setText(self.d.lowPriority)
|
||||||
self.dialog.postponing.setText(self.d.suspended)
|
|
||||||
# scheduling
|
# scheduling
|
||||||
for type in ("hard", "mid", "easy"):
|
for type in ("hard", "mid", "easy"):
|
||||||
v = getattr(self.d, type + "IntervalMin")
|
v = getattr(self.d, type + "IntervalMin")
|
||||||
|
|
@ -260,9 +259,6 @@ class DeckProperties(QDialog):
|
||||||
self.updateField(self.d,
|
self.updateField(self.d,
|
||||||
"lowPriority",
|
"lowPriority",
|
||||||
unicode(self.dialog.lowPriority.text()))
|
unicode(self.dialog.lowPriority.text()))
|
||||||
self.updateField(self.d,
|
|
||||||
"suspended",
|
|
||||||
unicode(self.dialog.postponing.text()))
|
|
||||||
prioritiesChanged = was != self.d.modified
|
prioritiesChanged = was != self.d.modified
|
||||||
# sources
|
# sources
|
||||||
d = {}
|
d = {}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue