Fully reload the instance list once the folder is changed

Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
This commit is contained in:
Trial97 2023-08-31 20:34:34 +03:00
parent 25ce11d85d
commit c2b03d0f71
No known key found for this signature in database
GPG Key ID: 55EF5DA53DB36318

View File

@ -768,6 +768,9 @@ void InstanceList::on_InstFolderChanged([[maybe_unused]] const Setting& setting,
}
m_instDir = newInstDir;
m_groupsLoaded = false;
beginRemoveRows(QModelIndex(), 0, count());
m_instances.erase(m_instances.begin(), m_instances.end());
endRemoveRows();
emit instancesChanged();
}
}