diff --git a/plugins/audio_modem.py b/plugins/audio_modem.py index 736d4322b..2da601415 100644 --- a/plugins/audio_modem.py +++ b/plugins/audio_modem.py @@ -85,7 +85,7 @@ class Plugin(BasePlugin): self.sender = self._send(parent=dialog, blob=blob) self.sender.start() b.clicked.connect(handler) - dialog.buttons.insertWidget(1, b) + dialog.buttons.insert(0, b) @hook def scan_text_edit(self, parent): diff --git a/plugins/greenaddress_instant.py b/plugins/greenaddress_instant.py index cf2c78310..92abfecb3 100644 --- a/plugins/greenaddress_instant.py +++ b/plugins/greenaddress_instant.py @@ -53,7 +53,7 @@ class Plugin(BasePlugin): self.wallet = d.wallet self.verify_button = b = QPushButton(self.button_label) b.clicked.connect(lambda: self.do_verify(d.tx)) - d.buttons.insertWidget(2, b) + d.buttons.insert(1, b) self.transaction_dialog_update(d) def get_my_addr(self, tx):