diff options
| author | 2021-02-14 22:33:59 -0800 | |
|---|---|---|
| committer | 2021-02-14 22:33:59 -0800 | |
| commit | 90610bde9bea6808859a2cf99adbc404cd4f4878 (patch) | |
| tree | 3554d8f9d92eeb232fb1d4b6d98afa981a7540f3 /src | |
| parent | Merge pull request #5909 from ogniK5377/I3dl2Reverb (diff) | |
| parent | debugger: controller: Add access key (diff) | |
| download | yuzu-90610bde9bea6808859a2cf99adbc404cd4f4878.tar.gz yuzu-90610bde9bea6808859a2cf99adbc404cd4f4878.tar.xz yuzu-90610bde9bea6808859a2cf99adbc404cd4f4878.zip | |
Merge pull request #5935 from lat9nq/controller_access_keys
debugger: controller: Add access key
Diffstat (limited to 'src')
| -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() { | |||
| 42 | 42 | ||
| 43 | QAction* ControllerDialog::toggleViewAction() { | 43 | QAction* ControllerDialog::toggleViewAction() { |
| 44 | if (toggle_view_action == nullptr) { | 44 | if (toggle_view_action == nullptr) { |
| 45 | toggle_view_action = new QAction(windowTitle(), this); | 45 | toggle_view_action = new QAction(tr("&Controller P1"), this); |
| 46 | toggle_view_action->setCheckable(true); | 46 | toggle_view_action->setCheckable(true); |
| 47 | toggle_view_action->setChecked(isVisible()); | 47 | toggle_view_action->setChecked(isVisible()); |
| 48 | connect(toggle_view_action, &QAction::toggled, this, &ControllerDialog::setVisible); | 48 | connect(toggle_view_action, &QAction::toggled, this, &ControllerDialog::setVisible); |