Fix black theme play speed icons

This commit is contained in:
niksedk 2023-07-02 21:49:00 +02:00
parent dc5db72136
commit f95222876b
4 changed files with 4 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -2278,6 +2278,7 @@ can edit in same subtitle file (collaboration)</Information>
<ShowFullscreenButton>Show fullscreen button</ShowFullscreenButton>
<PreviewFontName>Subtitle preview font name</PreviewFontName>
<PreviewFontSize>Subtitle preview font size</PreviewFontSize>
<PreviewVerticalMargin>Vertical margin</PreviewVerticalMargin>
<MainWindowVideoControls>Main window video controls</MainWindowVideoControls>
<CustomSearchTextAndUrl>Custom search text and URL</CustomSearchTextAndUrl>
<WaveformAppearance>Waveform appearance</WaveformAppearance>

View File

@ -6175,6 +6175,9 @@ namespace Nikse.SubtitleEdit.Logic
case "Settings/PreviewFontSize":
language.Settings.PreviewFontSize = reader.Value;
break;
case "Settings/PreviewVerticalMargin":
language.Settings.PreviewVerticalMargin = reader.Value;
break;
case "Settings/MainWindowVideoControls":
language.Settings.MainWindowVideoControls = reader.Value;
break;