mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-25 12:55:00 +00:00
About Window (#458)
This commit is contained in:
parent
ecf7f36763
commit
3be2e4b2b8
6 changed files with 164 additions and 1 deletions
|
@ -9,6 +9,7 @@
|
|||
#include <QStatusBar>
|
||||
#include <QtConcurrent>
|
||||
|
||||
#include "about_dialog.h"
|
||||
#include "common/io_file.h"
|
||||
#include "common/version.h"
|
||||
#include "core/file_format/pkg.h"
|
||||
|
@ -206,6 +207,11 @@ void MainWindow::CreateConnects() {
|
|||
settingsDialog->exec();
|
||||
});
|
||||
|
||||
connect(ui->aboutAct, &QAction::triggered, this, [this]() {
|
||||
auto aboutDialog = new AboutDialog(this);
|
||||
aboutDialog->exec();
|
||||
});
|
||||
|
||||
connect(ui->setIconSizeTinyAct, &QAction::triggered, this, [this]() {
|
||||
if (isTableList) {
|
||||
m_game_list_frame->icon_size =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue