made next unread post arrow also work when no post is selected

This commit is contained in:
csoler 2018-12-09 23:18:50 +01:00
parent 983ac7dda9
commit 34f51fff9c
No known key found for this signature in database
GPG Key ID: 7BCA522266C0804C

View File

@ -1323,6 +1323,9 @@ void GxsForumThreadWidget::nextUnreadMessage()
{
QModelIndex index = getCurrentIndex();
if(!index.isValid())
index = mThreadProxyModel->index(0,0);
do
{
if(index.data(RsGxsForumModel::UnreadChildrenRole).toBool())