mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-02-04 19:04:30 +00:00
parent
19f50a363d
commit
1de4c2497c
@ -121,8 +121,8 @@ void TransferListDelegate::paint(QPainter *painter, const QStyleOptionViewItem &
|
||||
}
|
||||
break;
|
||||
case TransferListModel::TR_TIME_ELAPSED: {
|
||||
const int elapsedTime = index.data().toInt();
|
||||
const int seedingTime = index.data(Qt::UserRole).toInt();
|
||||
const qlonglong elapsedTime = index.data().toLongLong();
|
||||
const qlonglong seedingTime = index.data(Qt::UserRole).toLongLong();
|
||||
const QString txt = (seedingTime > 0)
|
||||
? tr("%1 (seeded for %2)", "e.g. 4m39s (seeded for 3m10s)")
|
||||
.arg(Utils::Misc::userFriendlyDuration(elapsedTime)
|
||||
|
Loading…
x
Reference in New Issue
Block a user