Change some defaults and give settings widgets better properties.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15931 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
893551e4ed
commit
1e489e53b8
2 changed files with 17 additions and 3 deletions
|
@ -238,9 +238,8 @@ EncRbSpeex::EncRbSpeex(QWidget *parent) : EncBase(parent)
|
|||
|
||||
defaultQuality = 8.f;
|
||||
defaultVolume = 1.f;
|
||||
defaultComplexity =3;
|
||||
defaultComplexity = 10;
|
||||
defaultBand = false;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -22,6 +22,12 @@
|
|||
</item>
|
||||
<item row="1" column="0" >
|
||||
<widget class="QDoubleSpinBox" name="volume" >
|
||||
<property name="maximum" >
|
||||
<double>10.000000000000000</double>
|
||||
</property>
|
||||
<property name="singleStep" >
|
||||
<double>0.010000000000000</double>
|
||||
</property>
|
||||
<property name="value" >
|
||||
<double>1.000000000000000</double>
|
||||
</property>
|
||||
|
@ -43,6 +49,12 @@
|
|||
</item>
|
||||
<item row="2" column="0" >
|
||||
<widget class="QDoubleSpinBox" name="quality" >
|
||||
<property name="decimals" >
|
||||
<number>1</number>
|
||||
</property>
|
||||
<property name="maximum" >
|
||||
<double>10.000000000000000</double>
|
||||
</property>
|
||||
<property name="singleStep" >
|
||||
<double>1.000000000000000</double>
|
||||
</property>
|
||||
|
@ -60,8 +72,11 @@
|
|||
</item>
|
||||
<item row="3" column="0" >
|
||||
<widget class="QSpinBox" name="complexity" >
|
||||
<property name="maximum" >
|
||||
<number>10</number>
|
||||
</property>
|
||||
<property name="value" >
|
||||
<number>3</number>
|
||||
<number>10</number>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
|
Loading…
Reference in a new issue