mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-03-06 14:27:43 +00:00
Fixed an issue where game media would sometimes not get displayed after single-game scraping.
This commit is contained in:
parent
cd40071172
commit
65acb9fd50
|
@ -5,8 +5,7 @@
|
||||||
//
|
//
|
||||||
// Game metadata edit user interface.
|
// Game metadata edit user interface.
|
||||||
// This interface is triggered from the GuiGamelistOptions menu.
|
// This interface is triggered from the GuiGamelistOptions menu.
|
||||||
// The scraping interface is handled by GuiGameScraper which calls
|
// The scraping interface is handled by GuiGameScraper which calls GuiScraperSearch.
|
||||||
// GuiScraperSearch.
|
|
||||||
//
|
//
|
||||||
|
|
||||||
#include "guis/GuiMetaDataEd.h"
|
#include "guis/GuiMetaDataEd.h"
|
||||||
|
@ -507,7 +506,6 @@ void GuiMetaDataEd::save()
|
||||||
|
|
||||||
void GuiMetaDataEd::fetch()
|
void GuiMetaDataEd::fetch()
|
||||||
{
|
{
|
||||||
mMediaFilesUpdated = false;
|
|
||||||
GuiGameScraper* scr = new GuiGameScraper(
|
GuiGameScraper* scr = new GuiGameScraper(
|
||||||
mWindow, mScraperParams, std::bind(&GuiMetaDataEd::fetchDone, this, std::placeholders::_1));
|
mWindow, mScraperParams, std::bind(&GuiMetaDataEd::fetchDone, this, std::placeholders::_1));
|
||||||
mWindow->pushGui(scr);
|
mWindow->pushGui(scr);
|
||||||
|
|
|
@ -5,8 +5,7 @@
|
||||||
//
|
//
|
||||||
// Game metadata edit user interface.
|
// Game metadata edit user interface.
|
||||||
// This interface is triggered from the GuiGamelistOptions menu.
|
// This interface is triggered from the GuiGamelistOptions menu.
|
||||||
// The scraping interface is handled by GuiGameScraper which calls
|
// The scraping interface is handled by GuiGameScraper which calls GuiScraperSearch.
|
||||||
// GuiScraperSearch.
|
|
||||||
//
|
//
|
||||||
|
|
||||||
#ifndef ES_APP_GUIS_GUI_META_DATA_ED_H
|
#ifndef ES_APP_GUIS_GUI_META_DATA_ED_H
|
||||||
|
|
Loading…
Reference in a new issue