Comic Input: Fix the number of colors control not allowing values less than 8

This commit is contained in:
Kovid Goyal 2017-05-05 13:32:21 +05:30
parent 692628517f
commit bd1d6215f4
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -7,7 +7,7 @@
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>599</width> <width>599</width>
<height>398</height> <height>415</height>
</rect> </rect>
</property> </property>
<property name="windowTitle"> <property name="windowTitle">
@ -26,15 +26,21 @@
</item> </item>
<item row="3" column="1"> <item row="3" column="1">
<widget class="QSpinBox" name="opt_colors"> <widget class="QSpinBox" name="opt_colors">
<property name="specialValueText">
<string>off</string>
</property>
<property name="minimum"> <property name="minimum">
<number>8</number> <number>0</number>
</property> </property>
<property name="maximum"> <property name="maximum">
<number>32000000</number> <number>256</number>
</property> </property>
<property name="singleStep"> <property name="singleStep">
<number>8</number> <number>8</number>
</property> </property>
<property name="value">
<number>0</number>
</property>
</widget> </widget>
</item> </item>
<item row="5" column="0"> <item row="5" column="0">