fixed random crash in forum search

This commit is contained in:
csoler 2021-02-01 20:53:17 +01:00
parent 1abd206443
commit b5b490067b

View File

@ -257,6 +257,7 @@ GxsForumThreadWidget::GxsForumThreadWidget(const RsGxsGroupId &forumId, QWidget
mThreadModel = new RsGxsForumModel(this);
mThreadProxyModel = new ForumPostSortFilterProxyModel(ui->threadTreeWidget->header(),this);
mThreadProxyModel->setSourceModel(mThreadModel);
mThreadProxyModel->setDynamicSortFilter(false); // causes crashes when true.
mThreadProxyModel->setSortRole(RsGxsForumModel::SortRole);
ui->threadTreeWidget->setModel(mThreadProxyModel);