left, right, and S shortcuts modified to use shift (#3116)

This commit is contained in:
David Szabo 2018-02-19 06:38:51 +01:00 committed by Zach H
parent 3d2c7b6670
commit 2409eae940
4 changed files with 15 additions and 10 deletions

View file

@ -147,7 +147,9 @@ bool ShortcutsSettings::isKeyAllowed(QString name, QString Sequences)
<< "Ctrl+Alt+]"
<< "Tab"
<< "Space"
<< "S");
<< "Shift+S"
<< "Shift+Left"
<< "Shift+Right");
if (forbiddenKeys.contains(checkSequence)) {
return false;
}