This commit is contained in:
Martin Rotter 2014-03-24 13:16:49 +01:00
parent 832ff87c52
commit b8ef2dcab2

View File

@ -47,7 +47,7 @@ bool DynamicShortcutsWidget::areShortcutsUnique() {
foreach (const ActionBinding &binding, m_actionBindings) {
QKeySequence new_shortcut = binding.second->shortcut();
if (all_shortcuts.contains(new_shortcut) && !new_shortcut.isEmpty()) {
if (!new_shortcut.isEmpty() && all_shortcuts.contains(new_shortcut)) {
// Problem, two identical non-empty shortcuts found.
return false;
}