Browse Source

do not display if the label is not accepted

283
ThomasV 13 years ago
parent
commit
67d95e5406
  1. 2
      lib/gui_qt.py

2
lib/gui_qt.py

@ -330,6 +330,8 @@ class ElectrumWindow(QMainWindow):
self.wallet.labels[addr] = text
else:
print "error: this is an alias"
label = self.wallet.labels.get(addr,'')
item.setText(column_label, QString(label))
else:
s = self.wallet.labels.get(addr)
if s: self.wallet.labels.pop(addr)

Loading…
Cancel
Save