mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-15 09:43:07 -07:00
parent
19f50a363d
commit
1de4c2497c
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue