mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-04-10 19:15:13 +00:00
Removed an incorrect help entry for the scraper error dialog.
This commit is contained in:
parent
9ca948e145
commit
eb99e3edeb
|
|
@ -377,14 +377,14 @@ void GuiScraperSearch::onSearchError(const std::string& error)
|
||||||
mWindow->pushGui(new GuiMsgBox(mWindow, getHelpStyle(), Utils::String::toUpper(error),
|
mWindow->pushGui(new GuiMsgBox(mWindow, getHelpStyle(), Utils::String::toUpper(error),
|
||||||
"RETRY", std::bind(&GuiScraperSearch::search, this, mLastSearch),
|
"RETRY", std::bind(&GuiScraperSearch::search, this, mLastSearch),
|
||||||
"SKIP", mSkipCallback,
|
"SKIP", mSkipCallback,
|
||||||
"CANCEL", mCancelCallback));
|
"CANCEL", mCancelCallback, true));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
LOG(LogError) << "GuiScraperSearch search error: " <<
|
LOG(LogError) << "GuiScraperSearch search error: " <<
|
||||||
Utils::String::replace(error, "\n", "");
|
Utils::String::replace(error, "\n", "");
|
||||||
mWindow->pushGui(new GuiMsgBox(mWindow, getHelpStyle(), Utils::String::toUpper(error),
|
mWindow->pushGui(new GuiMsgBox(mWindow, getHelpStyle(), Utils::String::toUpper(error),
|
||||||
"RETRY", std::bind(&GuiScraperSearch::search, this, mLastSearch),
|
"RETRY", std::bind(&GuiScraperSearch::search, this, mLastSearch),
|
||||||
"CANCEL", mCancelCallback));
|
"CANCEL", mCancelCallback, "", nullptr, true));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue