Make sure comboxboxes are *not* initialized yet, so loading the template will update the GUI.

This commit is contained in:
LoRd_MuldeR 2014-04-16 21:27:27 +02:00
parent 868c5d6895
commit bb2702f899
2 changed files with 10 additions and 4 deletions

View File

@ -250,6 +250,9 @@
<property name="toolTip"> <property name="toolTip">
<string>Choose the &lt;b&gt;encoder&lt;/b&gt; to be used (e.g. x264 vs. x265). This also decides which output &lt;i&gt;format&lt;/i&gt; you will get (e.g. H.264 vs. HEVC).</string> <string>Choose the &lt;b&gt;encoder&lt;/b&gt; to be used (e.g. x264 vs. x265). This also decides which output &lt;i&gt;format&lt;/i&gt; you will get (e.g. H.264 vs. HEVC).</string>
</property> </property>
<property name="currentIndex">
<number>-1</number>
</property>
<item> <item>
<property name="text"> <property name="text">
<string>x264 (AVC)</string> <string>x264 (AVC)</string>
@ -298,7 +301,7 @@
<string>Choose the &lt;b&gt;architecture&lt;/b&gt; of the encoder (e.g. 32-Bit vs. 64-Bit). Generally the &quot;native&quot; architecture of your system should give the best performance.</string> <string>Choose the &lt;b&gt;architecture&lt;/b&gt; of the encoder (e.g. 32-Bit vs. 64-Bit). Generally the &quot;native&quot; architecture of your system should give the best performance.</string>
</property> </property>
<property name="currentIndex"> <property name="currentIndex">
<number>1</number> <number>-1</number>
</property> </property>
<item> <item>
<property name="text"> <property name="text">
@ -347,6 +350,9 @@
<property name="toolTip"> <property name="toolTip">
<string>Choose the &lt;b&gt;variant&lt;/b&gt; of the encoder (e.g. 8-Bit vs. 10-Bit). If you don't know which variant you need, stick with the &lt;i&gt;default&lt;/i&gt; one!</string> <string>Choose the &lt;b&gt;variant&lt;/b&gt; of the encoder (e.g. 8-Bit vs. 10-Bit). If you don't know which variant you need, stick with the &lt;i&gt;default&lt;/i&gt; one!</string>
</property> </property>
<property name="currentIndex">
<number>-1</number>
</property>
<item> <item>
<property name="text"> <property name="text">
<string>8-Bit</string> <string>8-Bit</string>
@ -417,7 +423,7 @@
<string>Select the &lt;b&gt;rate-control&lt;/b&gt; mode. Use &lt;i&gt;CRF&lt;/i&gt; mode in order to hit a specific level of quality. Or use &lt;i&gt;2-Pass&lt;/i&gt; mode in order to hit a specific file size.</string> <string>Select the &lt;b&gt;rate-control&lt;/b&gt; mode. Use &lt;i&gt;CRF&lt;/i&gt; mode in order to hit a specific level of quality. Or use &lt;i&gt;2-Pass&lt;/i&gt; mode in order to hit a specific file size.</string>
</property> </property>
<property name="currentIndex"> <property name="currentIndex">
<number>0</number> <number>-1</number>
</property> </property>
<item> <item>
<property name="text"> <property name="text">
@ -610,7 +616,7 @@
<string>This option controls the &quot;Speed -vs- Quality&quot; trade-off of the encoder. Use a &lt;i&gt;slower&lt;/i&gt; Preset in order to improve the quality at the same bitrate (file size), at the cost of increased encoding time. Or use a &lt;i&gt;faster&lt;/i&gt; Preset in order to save encoding time, at the cost of reduced quality.</string> <string>This option controls the &quot;Speed -vs- Quality&quot; trade-off of the encoder. Use a &lt;i&gt;slower&lt;/i&gt; Preset in order to improve the quality at the same bitrate (file size), at the cost of increased encoding time. Or use a &lt;i&gt;faster&lt;/i&gt; Preset in order to save encoding time, at the cost of reduced quality.</string>
</property> </property>
<property name="currentIndex"> <property name="currentIndex">
<number>5</number> <number>-1</number>
</property> </property>
<item> <item>
<property name="text"> <property name="text">

View File

@ -26,7 +26,7 @@
#define VER_X264_MAJOR 2 #define VER_X264_MAJOR 2
#define VER_X264_MINOR 3 #define VER_X264_MINOR 3
#define VER_X264_PATCH 6 #define VER_X264_PATCH 6
#define VER_X264_BUILD 824 #define VER_X264_BUILD 826
#define VER_X264_PORTABLE_EDITION (0) #define VER_X264_PORTABLE_EDITION (0)