diff --git a/RetroFE/Source/Graphics/Component/ScrollingList.cpp b/RetroFE/Source/Graphics/Component/ScrollingList.cpp index dfcbdae..ced3368 100644 --- a/RetroFE/Source/Graphics/Component/ScrollingList.cpp +++ b/RetroFE/Source/Graphics/Component/ScrollingList.cpp @@ -685,7 +685,7 @@ void ScrollingList::draw(unsigned int layer) for(unsigned int i = 0; i < components_.size(); ++i) { Component *c = components_.at(i); - if(c) c->draw(); + if(c && c->baseViewInfo.Layer == layer) c->draw(); } }