Browse Source
Merge pull request #5935 from lat9nq/controller_access_keys
debugger: controller: Add access key
pull/15/merge
bunnei
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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); |
|
|
|
|