Skip to content

Commit

Permalink
Ignore and Go Private buttons fix
Browse files Browse the repository at this point in the history
  • Loading branch information
levoncrypto committed Dec 16, 2023
1 parent 39c41e5 commit bc48fb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/qt/sendcoinsdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1291,12 +1291,12 @@ SendGoPrivateDialog::SendGoPrivateDialog():QMessageBox()
void SendGoPrivateDialog::onIgnoreClicked()
{
setVisible(false);
clickedButton = false;
clickedButton = true;
}
void SendGoPrivateDialog::onGoPrivateClicked()
{
setVisible(false);
clickedButton = true;
clickedButton = false;
}

bool SendGoPrivateDialog::getClickedButton()
Expand Down

0 comments on commit bc48fb8

Please sign in to comment.