mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-04-10 19:15:13 +00:00
Fixed an issue where a collection notification was not displayed when setting a game to not be counted.
This commit is contained in:
parent
5851139e53
commit
e08d3c6c1d
|
@ -385,6 +385,14 @@ void CollectionSystemsManager::updateCollectionSystem(FileData* file, Collection
|
||||||
parentRootFolder->sort(parentRootFolder->getSortTypeFromString(
|
parentRootFolder->sort(parentRootFolder->getSortTypeFromString(
|
||||||
parentRootFolder->getSortTypeString()),
|
parentRootFolder->getSortTypeString()),
|
||||||
mFavoritesSorting);
|
mFavoritesSorting);
|
||||||
|
GuiInfoPopup* s = new GuiInfoPopup(
|
||||||
|
mWindow,
|
||||||
|
"DISABLED '" +
|
||||||
|
Utils::String::toUpper(
|
||||||
|
Utils::String::removeParenthesis(file->getName())) +
|
||||||
|
"' IN '" + Utils::String::toUpper(sysData.system->getName()) + "'",
|
||||||
|
4000);
|
||||||
|
mWindow->setInfoPopup(s);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
ViewController::get()->getGameListView(curSys).get()->remove(collectionEntry,
|
ViewController::get()->getGameListView(curSys).get()->remove(collectionEntry,
|
||||||
|
|
Loading…
Reference in a new issue