use ns application event to detect when to re-scan for record changes.

This commit is contained in:
ITotalJustice
2025-05-04 20:37:36 +01:00
parent 078627e07b
commit 5d9e24af31
2 changed files with 29 additions and 11 deletions

View File

@@ -64,7 +64,7 @@ private:
void SetIndex(s64 index);
void ScanHomebrew();
void Sort();
void SortAndFindLastFile();
void SortAndFindLastFile(bool scan);
void FreeEntries();
private:
@@ -73,6 +73,7 @@ private:
std::vector<Entry> m_entries{};
s64 m_index{}; // where i am in the array
std::unique_ptr<List> m_list{};
Event m_event{};
bool m_is_reversed{};
bool m_dirty{};