mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-23 03:33:18 +01:00
Allow play rate (speed) down to 30% - thx Dan :)
This commit is contained in:
parent
bb83f6410a
commit
ad907ac803
@ -16414,7 +16414,7 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
comboBoxSubtitleFormats.AutoCompleteMode = AutoCompleteMode.Append;
|
||||
|
||||
toolStripSplitButtonPlayRate.DropDownItems.Clear();
|
||||
for (int i = 50; i <= 300; i += 10)
|
||||
for (int i = 30; i <= 300; i += 10)
|
||||
{
|
||||
toolStripSplitButtonPlayRate.DropDownItems.Add(new ToolStripMenuItem(i + "%", null, SetPlayRate) { Checked = i == 100 });
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user