mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix #1855957 [[Enhancement] Increase Max. OPDS items per query](https://bugs.launchpad.net/calibre/+bug/1855957)
This commit is contained in:
parent
5c2d0e7934
commit
3d42f724f3
@ -126,7 +126,7 @@ class Int(QSpinBox):
|
||||
|
||||
def __init__(self, name, layout):
|
||||
QSpinBox.__init__(self)
|
||||
self.setRange(0, 10000)
|
||||
self.setRange(0, 20000)
|
||||
opt = options[name]
|
||||
self.valueChanged.connect(self.changed_signal.emit)
|
||||
init_opt(self, opt, layout)
|
||||
@ -144,7 +144,7 @@ class Float(QDoubleSpinBox):
|
||||
|
||||
def __init__(self, name, layout):
|
||||
QDoubleSpinBox.__init__(self)
|
||||
self.setRange(0, 10000)
|
||||
self.setRange(0, 20000)
|
||||
self.setDecimals(1)
|
||||
opt = options[name]
|
||||
self.valueChanged.connect(self.changed_signal.emit)
|
||||
|
Loading…
x
Reference in New Issue
Block a user