1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: Mitsuya Shibata <mty.shibata@gmail.com>
Date: Thu, 30 Apr 2015 21:42:09 +0900
Subject: [kkc] fix the check for the keymap conflict was inverted
thanks to AWASHIRO Ikuya for the report.
---
gui/shortcutwidget.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui/shortcutwidget.cpp b/gui/shortcutwidget.cpp
index ea8e0e6..1f6c93f 100644
--- a/gui/shortcutwidget.cpp
+++ b/gui/shortcutwidget.cpp
@@ -151,7 +151,7 @@ void KkcShortcutWidget::addShortcutClicked()
{
AddShortcutDialog dialog;
if (dialog.exec() == QDialog::Accepted) {
- if (m_shortcutModel->add(dialog.shortcut())) {
+ if (!m_shortcutModel->add(dialog.shortcut())) {
QMessageBox::critical(this, _("Key Conflict"), _("Key to add is conflict with existing shortcut."));
}
}
|