mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12: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['terms'][0] = ["(is:new or is:due) "+tags, 9999, DYN_RANDOM]
|
||||||
dyn['resched'] = True
|
dyn['resched'] = True
|
||||||
# add deck limit
|
# 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
|
# generate cards
|
||||||
if not self.mw.col.sched.rebuildDyn():
|
if not self.mw.col.sched.rebuildDyn():
|
||||||
return showWarning(_("No cards matched the criteria you provided."))
|
return showWarning(_("No cards matched the criteria you provided."))
|
||||||
|
|
|
@ -208,7 +208,7 @@
|
||||||
<property name="minimumSize">
|
<property name="minimumSize">
|
||||||
<size>
|
<size>
|
||||||
<width>50</width>
|
<width>50</width>
|
||||||
<height>150</height>
|
<height>200</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
|
|
Loading…
Reference in a new issue