mirror of
https://github.com/ankitects/anki.git
synced 2025-09-22 16:02:23 -04:00
hide second filter for v1 sched
This commit is contained in:
parent
b9aa3a3083
commit
bff61b95e9
1 changed files with 4 additions and 0 deletions
|
@ -31,6 +31,10 @@ class DeckConf(QDialog):
|
|||
self.form.search.setText(search + " is:due")
|
||||
self.form.search_2.setText(search + " is:new")
|
||||
self.form.search.selectAll()
|
||||
|
||||
if self.mw.col.schedVer() == 1:
|
||||
self.form.secondFilter.setVisible(False)
|
||||
|
||||
self.show()
|
||||
self.exec_()
|
||||
saveGeom(self, "dyndeckconf")
|
||||
|
|
Loading…
Reference in a new issue