Fix issue with time code fore color

This commit is contained in:
niksedk 2023-07-16 19:14:47 +02:00
parent 5779e9f4b2
commit cf6248c91b
2 changed files with 2 additions and 3 deletions

View File

@ -2134,7 +2134,7 @@ namespace Nikse.SubtitleEdit.Controls
}
else
{
_labelVolume.ForeColor = Color.White;
_labelTimeCode.ForeColor = Color.White;
}
if (_labelVideoPlayerName.BackColor.R + _labelVideoPlayerName.BackColor.G + _labelVideoPlayerName.BackColor.B > 255 * 1.5)

View File

@ -5554,7 +5554,6 @@ namespace Nikse.SubtitleEdit.Forms
UiUtil.InitializeSubtitleFont(textBoxListViewText);
UiUtil.InitializeSubtitleFont(textBoxListViewTextOriginal);
UiUtil.InitializeSubtitleFont(SubtitleListview1);
InitializeToolbar();
}
catch (Exception exception)
{
@ -5850,7 +5849,6 @@ namespace Nikse.SubtitleEdit.Forms
DarkTheme.UndoDarkTheme(this, 1500);
OnLoad(null);
InitializeToolbar();
}
}
@ -5887,6 +5885,7 @@ namespace Nikse.SubtitleEdit.Forms
ShowLineInformationListView();
ShowSourceLineNumber();
LoadPlugins();
InitializeToolbar();
}
private void SetAudioVisualizerSettings()