mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-23 03:33:18 +01:00
Take current frame rate if it's not the default frame rate
This commit is contained in:
parent
280f8c5a6d
commit
793fa1989b
@ -27481,6 +27481,10 @@ namespace Nikse.SubtitleEdit.Forms
|
|||||||
{
|
{
|
||||||
netflixController.FrameRate = _videoInfo.FramesPerSecond;
|
netflixController.FrameRate = _videoInfo.FramesPerSecond;
|
||||||
}
|
}
|
||||||
|
else if (string.IsNullOrEmpty(_videoFileName) && CurrentFrameRate != 23.976 && CurrentFrameRate != 24)
|
||||||
|
{
|
||||||
|
netflixController.FrameRate = CurrentFrameRate;
|
||||||
|
}
|
||||||
|
|
||||||
netflixController.RunChecks(_subtitle);
|
netflixController.RunChecks(_subtitle);
|
||||||
|
|
||||||
@ -27494,7 +27498,7 @@ namespace Nikse.SubtitleEdit.Forms
|
|||||||
{
|
{
|
||||||
if (form.ShowDialog(this) == DialogResult.OK)
|
if (form.ShowDialog(this) == DialogResult.OK)
|
||||||
{
|
{
|
||||||
|
// Do nothing for now
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user