diff options
author | bunnei <bunneidev@gmail.com> | 2021-02-14 22:33:59 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-14 22:33:59 -0800 |
commit | 90610bde9bea6808859a2cf99adbc404cd4f4878 (patch) | |
tree | 3554d8f9d92eeb232fb1d4b6d98afa981a7540f3 /src/yuzu/debugger/controller.cpp | |
parent | 8378b8a61feb971fc4b8af8468938e4691c2cfb7 (diff) | |
parent | 6269cd7f1d5d7745088d192f26e7164a4bf13269 (diff) |
Merge pull request #5935 from lat9nq/controller_access_keys
debugger: controller: Add access key
Diffstat (limited to 'src/yuzu/debugger/controller.cpp')
-rw-r--r-- | src/yuzu/debugger/controller.cpp | 2 |
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); |