URI: 
       tsimplify contacts tab - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit fbb8b2ac6c2cede5d166f9cbbaee062c567623cb
   DIR parent 7a8635589b39b3554f443ae44e290eb1921388a4
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Mon, 30 May 2016 08:13:30 +0200
       
       simplify contacts tab
       
       Diffstat:
         M gui/qt/contact_list.py              |      16 ++++++----------
       
       1 file changed, 6 insertions(+), 10 deletions(-)
       ---
   DIR diff --git a/gui/qt/contact_list.py b/gui/qt/contact_list.py
       t@@ -25,6 +25,7 @@
        
        
        from electrum.i18n import _
       +from electrum.bitcoin import is_address
        from electrum.util import block_explorer_URL, format_satoshis, format_time, age
        from electrum.plugins import run_hook
        from electrum.paymentrequest import PR_UNPAID, PR_PAID, PR_UNKNOWN, PR_EXPIRED
       t@@ -36,7 +37,7 @@ from util import MyTreeWidget, pr_tooltips, pr_icons
        class ContactList(MyTreeWidget):
        
            def __init__(self, parent):
       -        MyTreeWidget.__init__(self, parent, self.create_menu, [_('Name'), _('Type'), _('Value')], 0, [0])
       +        MyTreeWidget.__init__(self, parent, self.create_menu, [_('Name'), _('Address')], 0, [0])
                self.setSelectionMode(QAbstractItemView.ExtendedSelection)
                self.setSortingEnabled(True)
        
       t@@ -56,8 +57,7 @@ class ContactList(MyTreeWidget):
                    menu.addAction(_("New contact"), lambda: self.parent.new_contact_dialog())
                else:
                    names = [unicode(item.text(0)) for item in selected]
       -            types = [unicode(item.text(1)) for item in selected]
       -            keys = [unicode(item.text(2)) for item in selected]
       +            keys = [unicode(item.text(1)) for item in selected]
                    column = self.currentColumn()
                    column_title = self.headerItem().text(column)
                    column_data = '\n'.join([unicode(item.text(column)) for item in selected])
       t@@ -68,13 +68,9 @@ class ContactList(MyTreeWidget):
        
                    menu.addAction(_("Pay to"), lambda: self.parent.payto_contacts(keys))
                    menu.addAction(_("Delete"), lambda: self.parent.delete_contacts(keys))
       -            URLs = []
       -            for (addr, _type) in zip(keys, types):
       -                if _type == 'address':
       -                    URLs.append(block_explorer_URL(self.config, 'addr', addr))
       +            URLs = [block_explorer_URL(self.config, 'addr', key) for key in filter(is_address, keys)]
                    if URLs:
       -                menu.addAction(_("View on block explorer"),
       -                               lambda: map(webbrowser.open, URLs))
       +                menu.addAction(_("View on block explorer"), lambda: map(webbrowser.open, URLs))
        
                run_hook('create_contact_menu', menu, selected)
                menu.exec_(self.viewport().mapToGlobal(position))
       t@@ -85,7 +81,7 @@ class ContactList(MyTreeWidget):
                self.clear()
                for key in sorted(self.parent.contacts.keys()):
                    _type, name = self.parent.contacts[key]
       -            item = QTreeWidgetItem([name, _type, key])
       +            item = QTreeWidgetItem([name, key])
                    item.setData(0, Qt.UserRole, key)
                    self.addTopLevelItem(item)
                    if key == current_key: