mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-31 11:54:22 -04:00
fixed bug in posts update logic
This commit is contained in:
parent
7a4bd87fe9
commit
822b532ad6
1 changed files with 13 additions and 6 deletions
|
@ -149,7 +149,8 @@ void RsPostedPostsModel::postMods()
|
|||
}
|
||||
void RsPostedPostsModel::update()
|
||||
{
|
||||
emit dataChanged(createIndex(0,0,(void*)NULL), createIndex(mDisplayedNbPosts,0,(void*)NULL));
|
||||
if(mDisplayedNbPosts > 0)
|
||||
emit dataChanged(createIndex(0,0,(void*)NULL), createIndex(mDisplayedNbPosts-1,0,(void*)NULL));
|
||||
}
|
||||
void RsPostedPostsModel::triggerRedraw()
|
||||
{
|
||||
|
@ -496,14 +497,20 @@ void RsPostedPostsModel::setPostsInterval(int start,int nb_posts)
|
|||
|
||||
uint32_t old_nb_rows = rowCount() ;
|
||||
|
||||
mDisplayedNbPosts = (uint32_t)std::min(nb_posts,(int)mFilteredPosts.size() - (start+1));
|
||||
mDisplayedNbPosts = (uint32_t)std::min(nb_posts,(int)mFilteredPosts.size() - start);
|
||||
mDisplayedStartIndex = start;
|
||||
|
||||
beginRemoveRows(QModelIndex(),mDisplayedNbPosts,old_nb_rows);
|
||||
endRemoveRows();
|
||||
if(old_nb_rows > mDisplayedNbPosts)
|
||||
{
|
||||
beginRemoveRows(QModelIndex(),mDisplayedNbPosts,old_nb_rows-1);
|
||||
endRemoveRows();
|
||||
}
|
||||
|
||||
beginInsertRows(QModelIndex(),old_nb_rows,mDisplayedNbPosts);
|
||||
endInsertRows();
|
||||
if(mDisplayedNbPosts > old_nb_rows)
|
||||
{
|
||||
beginInsertRows(QModelIndex(),old_nb_rows,mDisplayedNbPosts-1);
|
||||
endInsertRows();
|
||||
}
|
||||
|
||||
postMods();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue