Delete temp file

This commit is contained in:
niksedk 2023-07-15 09:42:01 +02:00
parent c87ed8eade
commit 32f8f1ff1a

View File

@ -921,6 +921,18 @@ namespace Nikse.SubtitleEdit.Forms
Configuration.Settings.Tools.GenVideoFontSizePercentOfHeight = (float)(currentHeight / _videoInfo.Height);
}
}
try
{
if (!string.IsNullOrEmpty(_mpvSubtitleFileName))
{
File.Delete(_mpvSubtitleFileName);
}
}
catch
{
// ignore
}
}
private void comboBoxVideoEncoding_SelectedIndexChanged(object sender, EventArgs e)