mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-03 12:30:07 +00:00
Qt history: Do not use monospace font for description column
This commit is contained in:
parent
3c111471e9
commit
1e92307120
1 changed files with 1 additions and 1 deletions
|
@ -194,7 +194,7 @@ class HistoryModel(QAbstractItemModel, Logger):
|
|||
return QVariant(msg)
|
||||
elif col > HistoryColumns.DESCRIPTION and role == Qt.TextAlignmentRole:
|
||||
return QVariant(Qt.AlignRight | Qt.AlignVCenter)
|
||||
elif col != HistoryColumns.STATUS and role == Qt.FontRole:
|
||||
elif col > HistoryColumns.DESCRIPTION and role == Qt.FontRole:
|
||||
monospace_font = QFont(MONOSPACE_FONT)
|
||||
return QVariant(monospace_font)
|
||||
#elif col == HistoryColumns.DESCRIPTION and role == Qt.DecorationRole and not is_lightning\
|
||||
|
|
Loading…
Add table
Reference in a new issue