diff options
author | Kevin Smith <git@kismith.co.uk> | 2014-01-06 17:10:42 (GMT) |
---|---|---|
committer | Swift Review <review@swift.im> | 2014-01-11 12:49:18 (GMT) |
commit | 9cf1fe4ec5d3729ceb53385aeb245a4a688823e0 (patch) | |
tree | defc8e934a03d00113ec13b22e8684d76c683939 /Swift/QtUI/Roster | |
parent | 9f0bba97276d0d4e1415881f04e2cb3dfb1552e2 (diff) | |
download | swift-9cf1fe4ec5d3729ceb53385aeb245a4a688823e0.zip swift-9cf1fe4ec5d3729ceb53385aeb245a4a688823e0.tar.bz2 |
Fix screenreader rendering, and bump Windows builds to Qt-5.2
Change-Id: I4709c5fb3924a527c2ed03ed5ca36747f3031f4c
Diffstat (limited to 'Swift/QtUI/Roster')
-rw-r--r-- | Swift/QtUI/Roster/RosterModel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/QtUI/Roster/RosterModel.cpp b/Swift/QtUI/Roster/RosterModel.cpp index 24387e0..fa8c393 100644 --- a/Swift/QtUI/Roster/RosterModel.cpp +++ b/Swift/QtUI/Roster/RosterModel.cpp @@ -97,7 +97,7 @@ QVariant RosterModel::data(const QModelIndex& index, int role) const { case Qt::TextColorRole: return getTextColor(item); case Qt::BackgroundColorRole: return getBackgroundColor(item); case Qt::ToolTipRole: return getToolTip(item); - case StatusTextRole: return getScreenReaderTextOr(item, getStatusText(item)); + case StatusTextRole: return getStatusText(item); case AvatarRole: return getAvatar(item); case PresenceIconRole: return getPresenceIcon(item); case ChildCountRole: return getChildCount(item); |