mirror of
https://github.com/stenzek/duckstation.git
synced 2026-02-04 05:04:33 +00:00
Qt: Remove unused cover downloader signal
This commit is contained in:
@@ -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();
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user