Qt: Remove unused cover downloader signal

This commit is contained in:
Stenzek
2025-11-28 21:02:24 +10:00
parent cc6428645a
commit c91446c603
2 changed files with 0 additions and 8 deletions

View File

@@ -2580,7 +2580,6 @@ void MainWindow::connectSignals()
&MainWindow::onAchievementsHardcoreModeChanged);
connect(g_emu_thread, &EmuThread::achievementsAllProgressRefreshed, this,
&MainWindow::onAchievementsAllProgressRefreshed);
connect(g_emu_thread, &EmuThread::onCoverDownloaderOpenRequested, this, &MainWindow::onToolsCoverDownloaderTriggered);
connect(g_emu_thread, &EmuThread::onCreateAuxiliaryRenderWindow, this, &MainWindow::onCreateAuxiliaryRenderWindow,
Qt::BlockingQueuedConnection);
connect(g_emu_thread, &EmuThread::onDestroyAuxiliaryRenderWindow, this, &MainWindow::onDestroyAuxiliaryRenderWindow,
@@ -3310,10 +3309,6 @@ void MainWindow::onToolsMemoryCardEditorTriggered()
void MainWindow::onToolsCoverDownloaderTriggered()
{
// This can be invoked via big picture, so exit fullscreen.
// Wait for the fullscreen request to actually go through, otherwise the downloader appears behind the main window.
exitFullscreen(true);
if (!m_cover_download_window)
{
m_cover_download_window = new CoverDownloadWindow();

View File

@@ -137,9 +137,6 @@ Q_SIGNALS:
Host::AuxiliaryRenderWindowHandle* handle, WindowInfo* wi, Error* error);
void onDestroyAuxiliaryRenderWindow(Host::AuxiliaryRenderWindowHandle handle, QPoint* pos, QSize* size);
/// Big Picture UI requests.
void onCoverDownloaderOpenRequested();
public:
void setDefaultSettings(bool system = true, bool controller = true);
void applySettings(bool display_osd_messages = false);