Fixed bug in validation of shortcut - thx Victor :)

This commit is contained in:
Nikolaj Olsson 2016-07-09 12:36:14 +02:00
parent 589e72fd61
commit 5e7841fe0a

View File

@ -2336,7 +2336,7 @@ namespace Nikse.SubtitleEdit.Forms
return false;
}
if (comboBoxShortcutKey.SelectedIndex == 0)
if (comboBoxShortcutKey.SelectedIndex == 0 && !checkBoxShortcutsControl.Checked && !checkBoxShortcutsAlt.Checked && !checkBoxShortcutsShift.Checked)
{
return true;
}