Fixed an issue where collection changes were not applied correctly.

This commit is contained in:
Leon Styhre 2023-01-14 20:01:17 +01:00
parent 3bbc761c8f
commit 110911df2e

View file

@ -96,6 +96,8 @@ public:
const bool getDeletionFlag() const { return mDeletionFlag; }
void setDeletionFlag(bool setting) { mDeletionFlag = setting; }
const bool isPlaceHolder() const { return mType == PLACEHOLDER; }
void refreshMetadata() { metadata = mSourceFileData->metadata; }
const std::vector<FileData*>& getChildrenListToDisplay();
std::vector<FileData*> getFilesRecursive(unsigned int typeMask,
@ -108,10 +110,6 @@ public:
void addChild(FileData* file); // Error if mType != FOLDER
void removeChild(FileData* file); // Error if mType != FOLDER
const bool isPlaceHolder() const { return mType == PLACEHOLDER; }
virtual void refreshMetadata() { return; }
virtual std::string getKey() { return getFileName(); }
const bool isArcadeAsset() const;
const bool isArcadeGame() const;