mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-13 08:43:08 -07:00
- Improved the way menu icons are installed to avoid problems on some systems (Thanks JanCR for reporting this)
- Fixed version in desktop file
This commit is contained in:
parent
7b8722df34
commit
31abae33a1
7 changed files with 38 additions and 4 deletions
|
@ -541,6 +541,7 @@ void GUI::updateDlList(bool force){
|
|||
// No need to update if qBittorrent DL list is hidden
|
||||
return;
|
||||
}
|
||||
BTSession->printPausedTorrents();
|
||||
LCD_UpSpeed->display(tmp); // UP LCD
|
||||
LCD_DownSpeed->display(tmp2); // DL LCD
|
||||
// browse handles
|
||||
|
@ -615,6 +616,7 @@ void GUI::updateDlList(bool force){
|
|||
case torrent_status::downloading:
|
||||
case torrent_status::downloading_metadata:
|
||||
if(torrentStatus.download_payload_rate > 0){
|
||||
qDebug("%s is downloading", (const char*)fileHash.toUtf8());
|
||||
DLListModel->setData(DLListModel->index(row, NAME), QVariant(QIcon(":/Icons/skin/downloading.png")), Qt::DecorationRole);
|
||||
DLListModel->setData(DLListModel->index(row, ETA), QVariant((qlonglong)BTSession->getETA(fileHash)));
|
||||
setRowColor(row, "green");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue