mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-31 04:25:40 +00:00
Added a notification if attempting to add a placeholder to a custom collection.
This commit is contained in:
parent
a84e7c9414
commit
f3321009fe
|
@ -247,6 +247,14 @@ bool ISimpleGameListView::input(InputConfig* config, Input input)
|
||||||
"CAN'T ADD CUSTOM COLLECTIONS TO CUSTOM COLLECTIONS", 4000);
|
"CAN'T ADD CUSTOM COLLECTIONS TO CUSTOM COLLECTIONS", 4000);
|
||||||
mWindow->setInfoPopup(s);
|
mWindow->setInfoPopup(s);
|
||||||
}
|
}
|
||||||
|
// Notify the user if attempting to add a placeholder to a custom collection.
|
||||||
|
if (CollectionSystemsManager::get()->isEditing() &&
|
||||||
|
mRoot->getSystem()->isGameSystem() && getCursor()->getType() == PLACEHOLDER) {
|
||||||
|
GuiInfoPopup* s;
|
||||||
|
s = new GuiInfoPopup(mWindow,
|
||||||
|
"CAN'T ADD PLACEHOLDERS TO CUSTOM COLLECTIONS", 4000);
|
||||||
|
mWindow->setInfoPopup(s);
|
||||||
|
}
|
||||||
else if (mRoot->getSystem()->isGameSystem() && getCursor()->getType() != PLACEHOLDER &&
|
else if (mRoot->getSystem()->isGameSystem() && getCursor()->getType() != PLACEHOLDER &&
|
||||||
getCursor()->getParent()->getPath() != "collections") {
|
getCursor()->getParent()->getPath() != "collections") {
|
||||||
if (getCursor()->getType() == GAME || getCursor()->getType() == FOLDER)
|
if (getCursor()->getType() == GAME || getCursor()->getType() == FOLDER)
|
||||||
|
|
Loading…
Reference in a new issue