Fixed DCinema interop language setting so custom settings now work - thx F-5 :)

This commit is contained in:
niksedk 2015-07-02 20:24:23 +02:00
parent 135cf1c3c2
commit 2f83851bcd

View File

@ -119,10 +119,7 @@ namespace Nikse.SubtitleEdit.Forms.DCinema
ss.CurrentDCinemaSubtitleId = textBoxSubtitleID.Text; ss.CurrentDCinemaSubtitleId = textBoxSubtitleID.Text;
ss.CurrentDCinemaMovieTitle = textBoxMovieTitle.Text; ss.CurrentDCinemaMovieTitle = textBoxMovieTitle.Text;
ss.CurrentDCinemaReelNumber = numericUpDownReelNumber.Value.ToString(); ss.CurrentDCinemaReelNumber = numericUpDownReelNumber.Value.ToString();
if (comboBoxLanguage.SelectedItem != null) ss.CurrentDCinemaLanguage = comboBoxLanguage.Text;
ss.CurrentDCinemaLanguage = comboBoxLanguage.SelectedItem.ToString();
else
ss.CurrentDCinemaLanguage = string.Empty;
ss.CurrentDCinemaFontId = textBoxFontID.Text; ss.CurrentDCinemaFontId = textBoxFontID.Text;
ss.CurrentDCinemaFontUri = textBoxFontUri.Text; ss.CurrentDCinemaFontUri = textBoxFontUri.Text;
ss.CurrentDCinemaFontColor = panelFontColor.BackColor; ss.CurrentDCinemaFontColor = panelFontColor.BackColor;