Skip to content

Commit

Permalink
Ignore and Go Private buttons fix (#1376)
Browse files Browse the repository at this point in the history
  • Loading branch information
levoncrypto authored Dec 18, 2023
1 parent 9a2377c commit 5f86f62
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 5f86f62

Please sign in to comment.