mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-24 12:39:25 +00:00
remove PR #111 dependency
This commit is contained in:
parent
af933da0c9
commit
5c330b071a
1 changed files with 4 additions and 2 deletions
6
main.qml
6
main.qml
|
@ -149,8 +149,10 @@ ApplicationWindow {
|
||||||
|
|
||||||
// disconnect handlers before connecting
|
// disconnect handlers before connecting
|
||||||
middlePanel.paymentClicked.disconnect(handlePayment);
|
middlePanel.paymentClicked.disconnect(handlePayment);
|
||||||
middlePanel.checkPaymentClicked.disconnect(handleCheckPayment);
|
// TODO: remove if statement when PR #111 is merged
|
||||||
|
if(typeof(handleCheckPayment) !== "undefined") {
|
||||||
|
middlePanel.checkPaymentClicked.disconnect(handleCheckPayment);
|
||||||
|
}
|
||||||
middlePanel.paymentClicked.connect(handlePayment);
|
middlePanel.paymentClicked.connect(handlePayment);
|
||||||
// basicPanel.paymentClicked.connect(handlePayment);
|
// basicPanel.paymentClicked.connect(handlePayment);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue