diff options
author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2021-02-14 21:57:47 +0100 |
---|---|---|
committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2021-02-14 22:10:12 +0100 |
commit | 6269cd7f1d5d7745088d192f26e7164a4bf13269 (patch) | |
tree | 02c002f224668f9a874206b164c118fb02924f7d /src | |
parent | Merge pull request #5920 from bunnei/am-ldn-fix (diff) | |
download | yuzu-6269cd7f1d5d7745088d192f26e7164a4bf13269.tar yuzu-6269cd7f1d5d7745088d192f26e7164a4bf13269.tar.gz yuzu-6269cd7f1d5d7745088d192f26e7164a4bf13269.tar.bz2 yuzu-6269cd7f1d5d7745088d192f26e7164a4bf13269.tar.lz yuzu-6269cd7f1d5d7745088d192f26e7164a4bf13269.tar.xz yuzu-6269cd7f1d5d7745088d192f26e7164a4bf13269.tar.zst yuzu-6269cd7f1d5d7745088d192f26e7164a4bf13269.zip |
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() { 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); |