Skip to content

Commit

Permalink
Slightly increased width of 'health' column
Browse files Browse the repository at this point in the history
  • Loading branch information
devos50 committed Oct 5, 2021
1 parent 1bd7567 commit 71fb8ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tribler-gui/tribler_gui/widgets/tablecontentmodel.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def define_columns():
Column.CATEGORY: d('category', "", width=30, tooltip_filter=lambda data: data),
Column.NAME: d('name', tr("Name"), width=EXPANDING),
Column.SIZE: d('size', tr("Size"), width=90, display_filter=lambda data: (format_size(float(data)) if data != "" else "")),
Column.HEALTH: d('health', tr("Health"), width=100, tooltip_filter=lambda data: f"{data}" + ('' if data == HEALTH_CHECKING else '\n(Click to recheck)'),),
Column.HEALTH: d('health', tr("Health"), width=120, tooltip_filter=lambda data: f"{data}" + ('' if data == HEALTH_CHECKING else '\n(Click to recheck)'),),
Column.UPDATED: d('updated', tr("Updated"), width=120, display_filter=lambda timestamp: pretty_date(timestamp) if timestamp and timestamp > BITTORRENT_BIRTHDAY else 'N/A',),
Column.VOTES: d('votes', tr("Popularity"), width=120, display_filter=format_votes, tooltip_filter=lambda data: get_votes_rating_description(data) if data is not None else None,),
Column.STATUS: d('status', "", sortable=False),
Expand Down

0 comments on commit 71fb8ab

Please sign in to comment.