Enhancement #2075565: Quickview: Tooltip displaying cell contents

This commit is contained in:
Charles Haley 2024-08-02 11:21:26 +01:00
parent 5203dc48d3
commit 358aa8c4c6

View File

@ -666,7 +666,7 @@ class Quickview(QDialog, Ui_Quickview):
select_item = a
# The data is supplied on demand when the item is displayed
a.setData(Qt.ItemDataRole.UserRole, b)
a.setToolTip(tt)
a.setToolTip(f"<div>{_('Value')}: {a.text()}</div>{tt}")
self.books_table.setItem(row, self.key_to_table_widget_column(col), a)
self.books_table.setRowHeight(row, self.books_table_row_height)
self.books_table.blockSignals(False)