diff --git a/rpcs3/rpcs3qt/main_window.cpp b/rpcs3/rpcs3qt/main_window.cpp index ce9a0fc2b0..e50acde837 100644 --- a/rpcs3/rpcs3qt/main_window.cpp +++ b/rpcs3/rpcs3qt/main_window.cpp @@ -148,7 +148,6 @@ bool main_window::Init([[maybe_unused]] bool with_cli_boot) if (enable_play_last) { ui->sysPauseAct->setText(tr("&Play last played game")); - ui->sysPauseAct->setShortcut(QKeySequence("Ctrl+R")); ui->sysPauseAct->setIcon(m_icon_play); ui->toolbar_start->setToolTip(start_tooltip); } diff --git a/rpcs3/rpcs3qt/welcome_dialog.cpp b/rpcs3/rpcs3qt/welcome_dialog.cpp index 0c81cfed06..32677a9396 100644 --- a/rpcs3/rpcs3qt/welcome_dialog.cpp +++ b/rpcs3/rpcs3qt/welcome_dialog.cpp @@ -19,8 +19,8 @@ welcome_dialog::welcome_dialog(std::shared_ptr gui_settings, bool ui->setupUi(this); setAttribute(Qt::WA_DeleteOnClose); - setWindowFlag(Qt::WindowCloseButtonHint, is_manual_show); + ui->okay->setEnabled(is_manual_show); ui->i_have_read->setChecked(is_manual_show); ui->i_have_read->setEnabled(!is_manual_show); @@ -51,12 +51,12 @@ welcome_dialog::welcome_dialog(std::shared_ptr gui_settings, bool if (!is_manual_show) { - connect(ui->i_have_read, &QCheckBox::clicked, [this](bool checked) + connect(ui->i_have_read, &QCheckBox::clicked, this, [this](bool checked) { ui->okay->setEnabled(checked); }); - connect(ui->do_not_show, &QCheckBox::clicked, [this](bool checked) + connect(ui->do_not_show, &QCheckBox::clicked, this, [this](bool checked) { m_gui_settings->SetValue(gui::ib_show_welcome, QVariant(!checked)); });