Skip to content

Commit

Permalink
Set tooltip on all columns
Browse files Browse the repository at this point in the history
  • Loading branch information
gounux committed Apr 28, 2024
1 parent 9533caa commit 51d605d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion qtribu/gui/dlg_contents.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,8 @@ def _build_tree_widget_item_from_content(content: RssItem) -> QTreeWidgetItem:
",".join(content.categories),
]
)
item.setToolTip(1, content.abstract)
for i in range(4):
item.setToolTip(i, content.abstract)
icon_file = (
"logo_orange_no_text"
if "Revue de presse" in content.title
Expand Down

0 comments on commit 51d605d

Please sign in to comment.