URI: 
       tmonospace font for amount column - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 4b49b743dc81e84851c00632e665f2261572c8cf
   DIR parent fd2abac0d74a98c85e22552210a571d12c3ed06d
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Sun, 10 Jun 2012 16:04:27 +0200
       
       monospace font for amount column
       
       Diffstat:
         M lib/gui_qt.py                       |       5 +++--
       
       1 file changed, 3 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/lib/gui_qt.py b/lib/gui_qt.py
       t@@ -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)
       t@@ -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: