From 1e9230712062589e312d548b45bef7a13fa6c691 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sat, 7 Mar 2020 10:44:09 +0100 Subject: [PATCH] Qt history: Do not use monospace font for description column --- electrum/gui/qt/history_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/gui/qt/history_list.py b/electrum/gui/qt/history_list.py index 3ea987590..60f21a294 100644 --- a/electrum/gui/qt/history_list.py +++ b/electrum/gui/qt/history_list.py @@ -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\