From 0a65f68b4ad100a84459870cc51a004091efc219 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 25 May 2019 04:19:51 -0400 Subject: [PATCH] configure_hotkeys: Tidy up key sequence conflict error string Avoids mentioning the user and formalizes the error itself. --- src/citra_qt/configuration/configure_hotkeys.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/citra_qt/configuration/configure_hotkeys.cpp b/src/citra_qt/configuration/configure_hotkeys.cpp index bb990b900..551d36758 100644 --- a/src/citra_qt/configuration/configure_hotkeys.cpp +++ b/src/citra_qt/configuration/configure_hotkeys.cpp @@ -87,8 +87,8 @@ void ConfigureHotkeys::Configure(QModelIndex index) { } if (IsUsedKey(key_sequence) && key_sequence != QKeySequence(previous_key.toString())) { - QMessageBox::warning(this, tr("Error in inputted key"), - tr("You're using a key that's already bound.")); + QMessageBox::warning(this, tr("Conflicting Key Sequence"), + tr("The entered key sequence is already assigned to another hotkey.")); } else { model->setData(index, key_sequence.toString(QKeySequence::NativeText)); EmitHotkeysChanged();