From ec46a812408c275cb09ce10bf5c7a755ce9b6ef8 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Fri, 3 Feb 2012 22:27:41 +0100 Subject: [PATCH] do not handle labels --- client/gui.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/client/gui.py b/client/gui.py index 2c373f53..ed0a6c1f 100644 --- a/client/gui.py +++ b/client/gui.py @@ -779,8 +779,9 @@ class BitcoinGUI: self.show_message('Warning: the URI contains a bad signature.\nThe identity of the recipient cannot be verified.') payto = amount = label = identity = '' - if label and payto: - self.labels[payto] = label + # redundant with aliases + #if label and payto: + # self.labels[payto] = label self.notebook.set_current_page(1) self.payto_entry.set_text(payto) @@ -797,9 +798,6 @@ class BitcoinGUI: def create_about_tab(self): page = gtk.VBox() page.show() - #self.info = gtk.Label('') - #self.info.set_selectable(True) - #page.pack_start(self.info) tv = gtk.TextView() tv.set_editable(False) tv.set_cursor_visible(False)