Summary: | More whitespace in read/unread mails column | ||
---|---|---|---|
Product: | [Unmaintained] kmail | Reporter: | Lauri Watts <lauri> |
Component: | general | Assignee: | kdepim bugs <kdepim-bugs> |
Status: | RESOLVED FIXED | ||
Severity: | wishlist | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Compiled Sources | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Lauri Watts
2003-03-24 15:55:36 UTC
Subject: KDE_3_1_BRANCH: kdenetwork/libkdenetwork CVS commit by kloecker: Add a space after the number of unread/total messages. CCMAIL:56321-fixed@bugs.kde.org M +12 -4 kfoldertree.cpp 1.23.2.4 --- kdenetwork/libkdenetwork/kfoldertree.cpp #1.23.2.3:1.23.2.4 @@ -103,6 +103,10 @@ void KFolderTreeItem::setUnreadCount( in QString unread = QString::null; - if (mUnread == 0) unread = "-"; - else unread.setNum(mUnread); + if (mUnread == 0) + unread = "- "; + else { + unread.setNum(mUnread); + unread += " "; + } setText( static_cast<KFolderTree*>(listView())->unreadIndex(), @@ -118,6 +122,10 @@ void KFolderTreeItem::setTotalCount( int QString total = QString::null; - if (mTotal == 0) total = "-"; - else total.setNum(mTotal); + if (mTotal == 0) + total = "- "; + else { + total.setNum(mTotal); + total += " "; + } setText( static_cast<KFolderTree*>(listView())->totalIndex(), |