mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix #2037199 [[Enhancement] Calibre Editor: "Bulk rename the selected files" > Increase "Starting number" Field Input Digits](https://bugs.launchpad.net/calibre/+bug/2037199)
This commit is contained in:
parent
a2e06b5132
commit
4af337c571
@ -98,7 +98,7 @@ def get_bulk_rename_settings(parent, number, msg=None, sanitize=sanitize_file_na
|
|||||||
l.addRow(la)
|
l.addRow(la)
|
||||||
l.addRow(_('&Prefix:'), p)
|
l.addRow(_('&Prefix:'), p)
|
||||||
d.num = num = QSpinBox(d)
|
d.num = num = QSpinBox(d)
|
||||||
num.setMinimum(0), num.setValue(1), num.setMaximum(1000)
|
num.setMinimum(0), num.setValue(1), num.setMaximum(10000)
|
||||||
l.addRow(_('Starting &number:'), num)
|
l.addRow(_('Starting &number:'), num)
|
||||||
if allow_spine_order:
|
if allow_spine_order:
|
||||||
d.spine_order = QCheckBox(_('Rename files according to their book order'))
|
d.spine_order = QCheckBox(_('Rename files according to their book order'))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user