Allow shift in global shortcut

This commit is contained in:
David Edmundson 2014-03-05 19:37:41 +01:00
parent a8ddfe1def
commit 1dc6d98aa3

View File

@ -492,7 +492,7 @@ void KeySequenceHelper::keyPressed(int key, int modifiers)
if ((key == Qt::Key_Backtab) && (d->modifierKeys & Qt::SHIFT)) {
key = Qt::Key_Tab | d->modifierKeys;
} else {
key |= (d->modifierKeys & ~Qt::SHIFT);
key |= (d->modifierKeys);
}
if (d->nKey == 0) {