From 5e7841fe0a4f1534b4bd343a0d3347320c6a3d53 Mon Sep 17 00:00:00 2001 From: Nikolaj Olsson Date: Sat, 9 Jul 2016 12:36:14 +0200 Subject: [PATCH] Fixed bug in validation of shortcut - thx Victor :) --- src/Forms/Settings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Forms/Settings.cs b/src/Forms/Settings.cs index 9ba29aee6..d3bdda6b1 100644 --- a/src/Forms/Settings.cs +++ b/src/Forms/Settings.cs @@ -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; }