tfixes for pointofsale - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 123b1b10e5bc19e808c256200390d850c2f38f2e DIR parent a25f57035401fff1bb87ce417477a8f52d2e9be6 HTML Author: ecdsa <ecdsa@github> Date: Mon, 4 Mar 2013 17:19:32 +0100 fixes for pointofsale Diffstat: M plugins/pointofsale.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- DIR diff --git a/plugins/pointofsale.py b/plugins/pointofsale.py t@@ -30,10 +30,11 @@ class QR_Window(QWidget): self.setWindowTitle('Electrum - '+_('Invoice')) self.setMinimumSize(800, 250) self.address = '' - self.labe = '' + self.label = '' self.amount = 0 self.setFocusPolicy(QtCore.Qt.NoFocus) + self.merchant_name = config.get('merchant_name', 'Invoice') main_box = QHBoxLayout() self.qrw = QRCodeWidget()