diff options
Diffstat (limited to 'src/yuzu')
| -rw-r--r-- | src/yuzu/configuration/configure_hotkeys.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/yuzu/configuration/configure_hotkeys.cpp b/src/yuzu/configuration/configure_hotkeys.cpp index 583fd6a0e..c486ac2ed 100644 --- a/src/yuzu/configuration/configure_hotkeys.cpp +++ b/src/yuzu/configuration/configure_hotkeys.cpp @@ -67,8 +67,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));      } | 
