From 4b49b743dc81e84851c00632e665f2261572c8cf Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sun, 10 Jun 2012 16:04:27 +0200 Subject: [PATCH] monospace font for amount column --- lib/gui_qt.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/gui_qt.py b/lib/gui_qt.py index 3ecf9dbc..7fbd4834 100644 --- a/lib/gui_qt.py +++ b/lib/gui_qt.py @@ -740,8 +740,8 @@ class ElectrumWindow(QMainWindow): l.setColumnHidden(4,not self.wallet.expert_mode) l.setColumnWidth(0, 50) l.setColumnWidth(1, 310) - l.setColumnWidth(2, 300) - l.setColumnWidth(3, 90) + l.setColumnWidth(2, 250) + l.setColumnWidth(3, 130) l.setColumnWidth(4, 10) self.new_address_button.setHidden(not self.wallet.expert_mode) @@ -776,6 +776,7 @@ class ElectrumWindow(QMainWindow): item.setFont(0, QFont(MONOSPACE_FONT)) item.setFont(1, QFont(MONOSPACE_FONT)) + item.setFont(3, QFont(MONOSPACE_FONT)) if address in self.wallet.frozen_addresses: item.setBackgroundColor(1, QColor('lightblue')) elif address in self.wallet.prioritized_addresses: