mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +00:00
Fix thumbnail and image to be separated as I think it was originally meant to be.
This commit is contained in:
parent
e569ed7b88
commit
1228e0c7bf
|
@ -565,6 +565,7 @@ void CollectionSystemManager::updateCollectionFolderMetadata(SystemData* sys)
|
|||
std::string genre = "None";
|
||||
std::string video = "";
|
||||
std::string thumbnail = "";
|
||||
std::string image = "";
|
||||
|
||||
std::unordered_map<std::string, FileData*> games = rootFolder->getChildrenByFilename();
|
||||
|
||||
|
@ -608,6 +609,7 @@ void CollectionSystemManager::updateCollectionFolderMetadata(SystemData* sys)
|
|||
|
||||
video = randomGame->getVideoPath();
|
||||
thumbnail = randomGame->getThumbnailPath();
|
||||
image = randomGame->getImagePath();
|
||||
}
|
||||
|
||||
|
||||
|
@ -618,7 +620,8 @@ void CollectionSystemManager::updateCollectionFolderMetadata(SystemData* sys)
|
|||
rootFolder->metadata.set("releasedate", releasedate);
|
||||
rootFolder->metadata.set("developer", developer);
|
||||
rootFolder->metadata.set("video", video);
|
||||
rootFolder->metadata.set("image", thumbnail);
|
||||
rootFolder->metadata.set("thumbnail", thumbnail);
|
||||
rootFolder->metadata.set("image", image);
|
||||
}
|
||||
|
||||
void CollectionSystemManager::initCustomCollectionSystems()
|
||||
|
|
|
@ -245,7 +245,7 @@ void VideoGameListView::updateInfoPanel()
|
|||
|
||||
mVideo->setImage(file->getThumbnailPath());
|
||||
mMarquee.setImage(file->getMarqueePath());
|
||||
mImage.setImage(file->getThumbnailPath());
|
||||
mImage.setImage(file->getImagePath());
|
||||
|
||||
mDescription.setText(file->metadata.get("desc"));
|
||||
mDescContainer.reset();
|
||||
|
|
Loading…
Reference in a new issue