mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
increase minimum editor size
This commit is contained in:
parent
a639bcbd64
commit
2e8029387d
2 changed files with 2 additions and 2 deletions
|
@ -146,7 +146,7 @@ class CustomStudy(QDialog):
|
|||
dyn['terms'][0] = ["(is:new or is:due) "+tags, 9999, DYN_RANDOM]
|
||||
dyn['resched'] = True
|
||||
# add deck limit
|
||||
dyn['terms'][0][0] = "deck:'%s' %s " % (self.deck['name'], dyn['terms'][0][0])
|
||||
dyn['terms'][0][0] = "deck:\"%s\" %s " % (self.deck['name'], dyn['terms'][0][0])
|
||||
# generate cards
|
||||
if not self.mw.col.sched.rebuildDyn():
|
||||
return showWarning(_("No cards matched the criteria you provided."))
|
||||
|
|
|
@ -208,7 +208,7 @@
|
|||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>50</width>
|
||||
<height>150</height>
|
||||
<height>200</height>
|
||||
</size>
|
||||
</property>
|
||||
</widget>
|
||||
|
|
Loading…
Reference in a new issue