mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 06:01:33 -06:00
Vertical align right-aligned header text
Since e907306b41 ("Right align header text that also has right-aligned
row text"), right-aligned elements are no longer centered vertically.
This can be noticed with some Qt styles (e.g. Breeze).
This commit is contained in:
@@ -402,7 +402,7 @@ QVariant TorrentModel::headerData(int section, Qt::Orientation orientation,
|
|||||||
case TorrentModelItem::TR_RATIO:
|
case TorrentModelItem::TR_RATIO:
|
||||||
case TorrentModelItem::TR_PRIORITY:
|
case TorrentModelItem::TR_PRIORITY:
|
||||||
case TorrentModelItem::TR_LAST_ACTIVITY:
|
case TorrentModelItem::TR_LAST_ACTIVITY:
|
||||||
return Qt::AlignRight;
|
return QVariant(Qt::AlignRight | Qt::AlignVCenter);
|
||||||
default:
|
default:
|
||||||
return QAbstractListModel::headerData(section, orientation, role);
|
return QAbstractListModel::headerData(section, orientation, role);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user