Browse Source
remove unneded signal
Signed-off-by: crueter <crueter@eden-emu.dev>
pull/3472/head
crueter
2 days ago
No known key found for this signature in database
GPG Key ID: 425ACD2D4830EBC6
4 changed files with
0 additions and
10 deletions
-
src/yuzu/configuration/configure_per_game.cpp
-
src/yuzu/configuration/configure_per_game.h
-
src/yuzu/configuration/configure_per_game_addons.h
-
src/yuzu/main_window.cpp
|
|
|
@ -87,9 +87,6 @@ ConfigurePerGame::ConfigurePerGame(QWidget* parent, u64 title_id_, const std::st |
|
|
|
|
|
|
|
addons_tab->SetTitleId(title_id); |
|
|
|
|
|
|
|
connect(addons_tab.get(), &ConfigurePerGameAddons::RefreshGameList, this, |
|
|
|
&ConfigurePerGame::RefreshGameList); |
|
|
|
|
|
|
|
scene = new QGraphicsScene; |
|
|
|
ui->icon_view->setScene(scene); |
|
|
|
|
|
|
|
|
|
|
|
@ -64,9 +64,6 @@ public: |
|
|
|
|
|
|
|
void LoadFromFile(FileSys::VirtualFile file_); |
|
|
|
|
|
|
|
signals: |
|
|
|
void RefreshGameList(); |
|
|
|
|
|
|
|
private: |
|
|
|
void changeEvent(QEvent* event) override; |
|
|
|
void RetranslateUI(); |
|
|
|
|
|
|
|
@ -49,9 +49,6 @@ public slots: |
|
|
|
void InstallModFolder(); |
|
|
|
void InstallModZip(); |
|
|
|
|
|
|
|
signals: |
|
|
|
void RefreshGameList(); |
|
|
|
|
|
|
|
private: |
|
|
|
void changeEvent(QEvent* event) override; |
|
|
|
void RetranslateUI(); |
|
|
|
|
|
|
|
@ -3656,7 +3656,6 @@ void MainWindow::OpenPerGameConfiguration(u64 title_id, const std::string& file_ |
|
|
|
ConfigurePerGame dialog(this, title_id, file_name, vk_device_records, *QtCommon::system); |
|
|
|
dialog.LoadFromFile(v_file); |
|
|
|
|
|
|
|
connect(&dialog, &ConfigurePerGame::RefreshGameList, this, &MainWindow::OnGameListRefresh); |
|
|
|
const auto result = dialog.exec(); |
|
|
|
|
|
|
|
if (result != QDialog::Accepted && !UISettings::values.configuration_applied) { |
|
|
|
|