mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-07-05 04:46:57 +03:00
Only load instance list twice.
This commit is contained in:
parent
583786757a
commit
9022042360
2 changed files with 9 additions and 3 deletions
|
|
@ -60,10 +60,15 @@ bool cmpVersions(BaseVersionPtr first, BaseVersionPtr second)
|
|||
return left->timestamp > right->timestamp;
|
||||
}
|
||||
|
||||
void MinecraftVersionList::sortInternal()
|
||||
{
|
||||
qSort(m_vlist.begin(), m_vlist.end(), cmpVersions);
|
||||
}
|
||||
|
||||
void MinecraftVersionList::sort()
|
||||
{
|
||||
beginResetModel();
|
||||
qSort(m_vlist.begin(), m_vlist.end(), cmpVersions);
|
||||
sortInternal();
|
||||
endResetModel();
|
||||
}
|
||||
|
||||
|
|
@ -85,9 +90,8 @@ void MinecraftVersionList::updateListData(QList<BaseVersionPtr> versions)
|
|||
beginResetModel();
|
||||
m_vlist = versions;
|
||||
m_loaded = true;
|
||||
sortInternal();
|
||||
endResetModel();
|
||||
// NOW SORT!!
|
||||
sort();
|
||||
}
|
||||
|
||||
inline QDomElement getDomElementByTagName(QDomElement parent, QString tagname)
|
||||
|
|
|
|||
|
|
@ -29,6 +29,8 @@ class QNetworkReply;
|
|||
class MinecraftVersionList : public BaseVersionList
|
||||
{
|
||||
Q_OBJECT
|
||||
private:
|
||||
void sortInternal();
|
||||
public:
|
||||
friend class MCVListLoadTask;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue