mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-08 22:43:31 +02:00
Fix #1240644 [Chapter threshold maximum of 99 is insufficient](https://bugs.launchpad.net/calibre/+bug/1240644)
This commit is contained in:
parent
8d544eaada
commit
66a88b5d6e
1 changed files with 5 additions and 1 deletions
|
|
@ -15,7 +15,11 @@
|
|||
</property>
|
||||
<layout class="QGridLayout" name="gridLayout">
|
||||
<item row="7" column="1">
|
||||
<widget class="QSpinBox" name="opt_toc_threshold"/>
|
||||
<widget class="QSpinBox" name="opt_toc_threshold">
|
||||
<property name="maximum">
|
||||
<number>10000</number>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0" colspan="2">
|
||||
<widget class="QCheckBox" name="opt_use_auto_toc">
|
||||
|
|
|
|||
Loading…
Reference in a new issue