From 93857ae247631e8c67d05a6610ded89f8976b83d Mon Sep 17 00:00:00 2001 From: OmrSi Date: Thu, 8 Dec 2022 05:19:41 +0200 Subject: [PATCH] Add remaining frame rates to ComboBoxFrameRate --- src/ui/Forms/Main.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ui/Forms/Main.cs b/src/ui/Forms/Main.cs index ef1096b19..44c75c1d8 100644 --- a/src/ui/Forms/Main.cs +++ b/src/ui/Forms/Main.cs @@ -407,6 +407,8 @@ namespace Nikse.SubtitleEdit.Forms toolStripComboBoxFrameRate.Items.Add(25.0.ToString(CultureInfo.CurrentCulture)); toolStripComboBoxFrameRate.Items.Add(29.97.ToString(CultureInfo.CurrentCulture)); toolStripComboBoxFrameRate.Items.Add(30.ToString(CultureInfo.CurrentCulture)); + toolStripComboBoxFrameRate.Items.Add(59.94.ToString(CultureInfo.CurrentCulture)); + toolStripComboBoxFrameRate.Items.Add(60.ToString(CultureInfo.CurrentCulture)); toolStripComboBoxFrameRate.Text = Configuration.Settings.General.DefaultFrameRate.ToString(); pictureBoxBookmark.Visible = false;