mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-25 12:44:46 +01:00
Merge pull request #1197 from ivandrofly/exportsub
Update (src/Forms/ExportPngXml.cs)
This commit is contained in:
commit
8cda3e8753
@ -2685,7 +2685,10 @@ $DROP=[DROPVALUE]" + Environment.NewLine + Environment.NewLine +
|
|||||||
foreach (string item in comboBoxImageFormat.Items)
|
foreach (string item in comboBoxImageFormat.Items)
|
||||||
{
|
{
|
||||||
if (item == Configuration.Settings.Tools.ExportFcpImageType)
|
if (item == Configuration.Settings.Tools.ExportFcpImageType)
|
||||||
|
{
|
||||||
comboBoxImageFormat.SelectedIndex = i;
|
comboBoxImageFormat.SelectedIndex = i;
|
||||||
|
break;
|
||||||
|
}
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -2697,7 +2700,10 @@ $DROP=[DROPVALUE]" + Environment.NewLine + Environment.NewLine +
|
|||||||
foreach (string item in comboBoxSubtitleFontSize.Items)
|
foreach (string item in comboBoxSubtitleFontSize.Items)
|
||||||
{
|
{
|
||||||
if (item == Convert.ToInt32(_subtitleFontSize).ToString(CultureInfo.InvariantCulture))
|
if (item == Convert.ToInt32(_subtitleFontSize).ToString(CultureInfo.InvariantCulture))
|
||||||
|
{
|
||||||
comboBoxSubtitleFontSize.SelectedIndex = i;
|
comboBoxSubtitleFontSize.SelectedIndex = i;
|
||||||
|
break;
|
||||||
|
}
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
checkBoxSimpleRender.Checked = Configuration.Settings.Tools.ExportVobSubSimpleRendering;
|
checkBoxSimpleRender.Checked = Configuration.Settings.Tools.ExportVobSubSimpleRendering;
|
||||||
@ -2710,7 +2716,10 @@ $DROP=[DROPVALUE]" + Environment.NewLine + Environment.NewLine +
|
|||||||
foreach (string item in comboBoxSubtitleFontSize.Items)
|
foreach (string item in comboBoxSubtitleFontSize.Items)
|
||||||
{
|
{
|
||||||
if (item == Convert.ToInt32(_subtitleFontSize).ToString(CultureInfo.InvariantCulture))
|
if (item == Convert.ToInt32(_subtitleFontSize).ToString(CultureInfo.InvariantCulture))
|
||||||
|
{
|
||||||
comboBoxSubtitleFontSize.SelectedIndex = i;
|
comboBoxSubtitleFontSize.SelectedIndex = i;
|
||||||
|
break;
|
||||||
|
}
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -2721,7 +2730,10 @@ $DROP=[DROPVALUE]" + Environment.NewLine + Environment.NewLine +
|
|||||||
foreach (string item in comboBoxSubtitleFontSize.Items)
|
foreach (string item in comboBoxSubtitleFontSize.Items)
|
||||||
{
|
{
|
||||||
if (item == Convert.ToInt32(_subtitleFontSize).ToString(CultureInfo.InvariantCulture))
|
if (item == Convert.ToInt32(_subtitleFontSize).ToString(CultureInfo.InvariantCulture))
|
||||||
|
{
|
||||||
comboBoxSubtitleFontSize.SelectedIndex = i;
|
comboBoxSubtitleFontSize.SelectedIndex = i;
|
||||||
|
break;
|
||||||
|
}
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user