mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-22 16:37:21 -06:00
- Updated Transfer tab icon
- Fix display of priority for seeding torrents
This commit is contained in:
@@ -88,8 +88,12 @@ public:
|
||||
}
|
||||
case PRIORITY: {
|
||||
int priority = index.data().toInt();
|
||||
if(priority >= 0)
|
||||
if(priority >= 0) {
|
||||
QItemDelegate::paint(painter, option, index);
|
||||
} else {
|
||||
QItemDelegate::drawBackground(painter, opt, index);
|
||||
QItemDelegate::drawDisplay(painter, opt, opt.rect, "*");
|
||||
}
|
||||
break;
|
||||
}
|
||||
case PROGRESS:{
|
||||
|
||||
Reference in New Issue
Block a user