From 9ae4cdccf396120869ea1777792edfc6a360fd51 Mon Sep 17 00:00:00 2001 From: Nikolaj Olsson Date: Thu, 9 Aug 2018 20:15:59 +0200 Subject: [PATCH] Minor UI fix in "Batch convert" --- src/Forms/BatchConvert.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Forms/BatchConvert.cs b/src/Forms/BatchConvert.cs index 655502256..daf2fe0b4 100644 --- a/src/Forms/BatchConvert.cs +++ b/src/Forms/BatchConvert.cs @@ -144,11 +144,13 @@ namespace Nikse.SubtitleEdit.Forms comboBoxFrameRateFrom.Items.Add(24.0); comboBoxFrameRateFrom.Items.Add(25.0); comboBoxFrameRateFrom.Items.Add(29.97); + comboBoxFrameRateFrom.Items.Add(30.0); comboBoxFrameRateTo.Items.Add(23.976); comboBoxFrameRateTo.Items.Add(24.0); comboBoxFrameRateTo.Items.Add(25.0); comboBoxFrameRateTo.Items.Add(29.97); + comboBoxFrameRateTo.Items.Add(30.0); UiUtil.FixLargeFonts(this, buttonCancel);