Add 'Close' button to 'Cheats' tab of 'Cheats and Patches' window

This fixes another issue with shadPS4 on desktops and interfaces that hide the app's titlebar
This commit is contained in:
tomboylover93 2025-01-08 18:59:27 -03:00
parent 7ca14c4d26
commit 0c16a28baf

View File

@ -188,8 +188,14 @@ void CheatsPatches::setupUI() {
}
});
QPushButton* closeButton = new QPushButton(tr("Close"));
connect(closeButton, &QPushButton::clicked, [this]() {
QWidget::close();
});
controlLayout->addWidget(downloadButton);
controlLayout->addWidget(deleteCheatButton);
controlLayout->addWidget(closeButton);
cheatsLayout->addLayout(controlLayout);
cheatsTab->setLayout(cheatsLayout);