Fixed an issue where game media would sometimes not get displayed after single-game scraping.

This commit is contained in:
Leon Styhre 2021-08-09 16:47:36 +02:00
parent cd40071172
commit 65acb9fd50
2 changed files with 2 additions and 5 deletions

View file

@ -5,8 +5,7 @@
//
// Game metadata edit user interface.
// This interface is triggered from the GuiGamelistOptions menu.
// The scraping interface is handled by GuiGameScraper which calls
// GuiScraperSearch.
// The scraping interface is handled by GuiGameScraper which calls GuiScraperSearch.
//
#include "guis/GuiMetaDataEd.h"
@ -507,7 +506,6 @@ void GuiMetaDataEd::save()
void GuiMetaDataEd::fetch()
{
mMediaFilesUpdated = false;
GuiGameScraper* scr = new GuiGameScraper(
mWindow, mScraperParams, std::bind(&GuiMetaDataEd::fetchDone, this, std::placeholders::_1));
mWindow->pushGui(scr);

View file

@ -5,8 +5,7 @@
//
// Game metadata edit user interface.
// This interface is triggered from the GuiGamelistOptions menu.
// The scraping interface is handled by GuiGameScraper which calls
// GuiScraperSearch.
// The scraping interface is handled by GuiGameScraper which calls GuiScraperSearch.
//
#ifndef ES_APP_GUIS_GUI_META_DATA_ED_H