summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-02-15 07:33:59 +0100
committerGitHub <noreply@github.com>2021-02-15 07:33:59 +0100
commit90610bde9bea6808859a2cf99adbc404cd4f4878 (patch)
tree3554d8f9d92eeb232fb1d4b6d98afa981a7540f3
parentMerge pull request #5909 from ogniK5377/I3dl2Reverb (diff)
parentdebugger: controller: Add access key (diff)
downloadyuzu-90610bde9bea6808859a2cf99adbc404cd4f4878.tar
yuzu-90610bde9bea6808859a2cf99adbc404cd4f4878.tar.gz
yuzu-90610bde9bea6808859a2cf99adbc404cd4f4878.tar.bz2
yuzu-90610bde9bea6808859a2cf99adbc404cd4f4878.tar.lz
yuzu-90610bde9bea6808859a2cf99adbc404cd4f4878.tar.xz
yuzu-90610bde9bea6808859a2cf99adbc404cd4f4878.tar.zst
yuzu-90610bde9bea6808859a2cf99adbc404cd4f4878.zip
-rw-r--r--src/yuzu/debugger/controller.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/debugger/controller.cpp b/src/yuzu/debugger/controller.cpp
index 85724a8f3..2731d948d 100644
--- a/src/yuzu/debugger/controller.cpp
+++ b/src/yuzu/debugger/controller.cpp
@@ -42,7 +42,7 @@ void ControllerDialog::refreshConfiguration() {
QAction* ControllerDialog::toggleViewAction() {
if (toggle_view_action == nullptr) {
- toggle_view_action = new QAction(windowTitle(), this);
+ toggle_view_action = new QAction(tr("&Controller P1"), this);
toggle_view_action->setCheckable(true);
toggle_view_action->setChecked(isVisible());
connect(toggle_view_action, &QAction::toggled, this, &ControllerDialog::setVisible);