This commit is contained in:
Kovid Goyal 2011-03-02 12:16:19 -07:00
parent 9780b1e11e
commit f0ef93ead5
3 changed files with 3 additions and 3 deletions

View File

@ -341,7 +341,7 @@ from the value in the box</string>
<number>1</number>
</property>
<property name="maximum">
<number>990000</number>
<number>99000000</number>
</property>
<property name="value">
<number>1</number>

View File

@ -419,7 +419,7 @@ If the box is colored green, then text matches the individual author's sort stri
<string>Book </string>
</property>
<property name="maximum">
<double>9999.989999999999782</double>
<double>99999999.989999994635582</double>
</property>
</widget>
</item>

View File

@ -351,7 +351,7 @@ class SeriesIndexEdit(QDoubleSpinBox):
QDoubleSpinBox.__init__(self, parent)
self.dialog = parent
self.db = self.original_series_name = None
self.setMaximum(1000000)
self.setMaximum(10000000)
self.series_edit = series_edit
series_edit.currentIndexChanged.connect(self.enable)
series_edit.editTextChanged.connect(self.enable)