From 22ea4a1127a6ffa149994a905a9e78ef5e924f32 Mon Sep 17 00:00:00 2001 From: Andrei Andreev Date: Mon, 3 Jun 2024 16:13:49 +0200 Subject: [PATCH] Add health column to popular torrents display The popular torrents model now includes a 'health' column. This change enhances the information provided about each torrent, allowing users to make more informed decisions when selecting torrents. --- src/tribler/gui/widgets/popular/popular_torrents_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tribler/gui/widgets/popular/popular_torrents_model.py b/src/tribler/gui/widgets/popular/popular_torrents_model.py index f355dffb5ba..5d116721ee6 100644 --- a/src/tribler/gui/widgets/popular/popular_torrents_model.py +++ b/src/tribler/gui/widgets/popular/popular_torrents_model.py @@ -2,7 +2,7 @@ class PopularTorrentsModel(ChannelContentModel): - columns_shown = (Column.CATEGORY, Column.NAME, Column.SIZE, Column.CREATED) + columns_shown = (Column.CATEGORY, Column.NAME, Column.SIZE, Column.HEALTH, Column.CREATED) def __init__(self, *args, **kwargs): super().__init__(*args, endpoint_url='metadata/torrents/popular', **kwargs)