URI: 
       tfix 2810 - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit b46e86d3c77479f8858ceaff78db9443d161d439
   DIR parent 5bf3b26476fc41a1a41e0d2d684779f873c2f2ad
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Mon, 28 Aug 2017 05:27:15 +0200
       
       fix 2810
       
       Diffstat:
         M gui/qt/history_list.py              |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/gui/qt/history_list.py b/gui/qt/history_list.py
       t@@ -119,7 +119,7 @@ class HistoryList(MyTreeWidget):
                if self.permit_edit(item, column):
                    super(HistoryList, self).on_doubleclick(item, column)
                else:
       -            tx_hash = str(item.data(0, Qt.UserRole).toString())
       +            tx_hash = item.data(0, Qt.UserRole)
                    tx = self.wallet.transactions.get(tx_hash)
                    self.parent.show_transaction(tx)