Set frame color after settings

This commit is contained in:
OmrSi 2020-11-16 16:25:14 +02:00
parent fd8d49ef6f
commit ea8230c390

View File

@ -4744,8 +4744,8 @@ namespace Nikse.SubtitleEdit.Forms
textBoxListViewTextAlternate.Initialize(Configuration.Settings.General.SubtitleTextBoxSyntaxColor);
RefreshSelectedParagraph();
}
textBoxListViewText.BackColor = SystemColors.WindowFrame;
textBoxListViewTextAlternate.BackColor = SystemColors.WindowFrame;
textBoxListViewText.BackColor = !IsSubtitleLoaded ? SystemColors.ActiveBorder : SystemColors.WindowFrame;
textBoxListViewTextAlternate.BackColor = !IsSubtitleLoaded ? SystemColors.ActiveBorder : SystemColors.WindowFrame;
SubtitleListview1.SyntaxColorAllLines(_subtitle);
mediaPlayer.LastParagraph = null;