Merge pull request #6498 from OmrSi/add-frame-rates

Add remaining frame rates to ComboBoxFrameRate
This commit is contained in:
Nikolaj Olsson 2022-12-08 00:39:44 -05:00 committed by GitHub
commit 8c32056442
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;