mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-20 23:47:23 -06:00
Display tooltip for all columns in torrent content widget
It is primary useful for showing long file names.
This commit is contained in:
@@ -339,7 +339,7 @@ int TorrentContentModel::getFileIndex(const QModelIndex &index)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
QVariant TorrentContentModel::data(const QModelIndex &index, int role) const
|
QVariant TorrentContentModel::data(const QModelIndex &index, const int role) const
|
||||||
{
|
{
|
||||||
if (!index.isValid())
|
if (!index.isValid())
|
||||||
return {};
|
return {};
|
||||||
@@ -375,6 +375,7 @@ QVariant TorrentContentModel::data(const QModelIndex &index, int role) const
|
|||||||
return {};
|
return {};
|
||||||
|
|
||||||
case Qt::DisplayRole:
|
case Qt::DisplayRole:
|
||||||
|
case Qt::ToolTipRole:
|
||||||
return item->displayData(index.column());
|
return item->displayData(index.column());
|
||||||
|
|
||||||
case Roles::UnderlyingDataRole:
|
case Roles::UnderlyingDataRole:
|
||||||
|
|||||||
Reference in New Issue
Block a user