diff options
| author | Don Sanders <don.sanders@nokia.com> | 2010-08-23 23:58:11 +1000 |
|---|---|---|
| committer | Don Sanders <don.sanders@nokia.com> | 2010-08-23 23:58:11 +1000 |
| commit | 523e33ed70a6d931e173a080aed787c08860ad54 (patch) | |
| tree | a07b2f474d3c4d38ee736b1a3849d519c86502cd /examples/qtmail/app/messagelistview.cpp | |
| parent | a856cadfad09c97706b51b4cc641166fa21461fd (diff) | |
Fixes: Get more messages link not appearing after initial mail check.
Task: QTSOL-168
Diffstat (limited to 'examples/qtmail/app/messagelistview.cpp')
| -rw-r--r-- | examples/qtmail/app/messagelistview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/qtmail/app/messagelistview.cpp b/examples/qtmail/app/messagelistview.cpp index 37218147..6b31dab3 100644 --- a/examples/qtmail/app/messagelistview.cpp +++ b/examples/qtmail/app/messagelistview.cpp @@ -218,7 +218,7 @@ int MessageListModel<BaseModel>::rowCount(const QModelIndex &parentIndex) const { int actualRows = SuperType::rowCount(parentIndex); - if (!parentIndex.isValid() && (actualRows > 0) && m_parent->moreButtonVisible()) + if (!parentIndex.isValid() && m_parent->moreButtonVisible()) actualRows++; return actualRows; |
