Fix for shortcuts in open format combo - thx Leon :)

Fix #6028
This commit is contained in:
niksedk 2022-06-10 16:34:39 +02:00
parent 18238f64b9
commit 641f943912

View File

@ -15827,6 +15827,11 @@ namespace Nikse.SubtitleEdit.Forms
return;
}
if (comboBoxSubtitleFormats.Focused && comboBoxSubtitleFormats.DroppedDown)
{
return;
}
var fc = UiUtil.FindFocusedControl(this);
if (fc != null && (e.Modifiers == Keys.None || e.Modifiers == Keys.Shift))
{