Do not show list for the only recipient.
This commit is contained in:
parent
2ee756f041
commit
78f9b5160f
1 changed files with 12 additions and 2 deletions
|
@ -321,7 +321,7 @@ void SendCoinsDialog::on_sendButton_clicked()
|
|||
QString questionString = tr("Are you sure you want to send?");
|
||||
questionString.append("<br /><span style='font-size:10pt;'>");
|
||||
questionString.append(tr("Please, review your transaction."));
|
||||
questionString.append("</span>");
|
||||
questionString.append("</span>%1");
|
||||
|
||||
if(txFee > 0)
|
||||
{
|
||||
|
@ -362,7 +362,17 @@ void SendCoinsDialog::on_sendButton_clicked()
|
|||
questionString.append(QString("<br /><span style='font-size:10pt; font-weight:normal;'>(=%1)</span>")
|
||||
.arg(alternativeUnits.join(" " + tr("or") + " ")));
|
||||
|
||||
SendConfirmationDialog confirmationDialog(tr("Confirm send coins"), questionString, "To review recipient list click \"Show Details...\"", formatted.join("\n\n"), SEND_CONFIRM_DELAY, this);
|
||||
QString informative_text;
|
||||
QString detailed_text;
|
||||
if (formatted.size() > 1) {
|
||||
questionString = questionString.arg("");
|
||||
informative_text = tr("To review recipient list click \"Show Details...\"");
|
||||
detailed_text = formatted.join("\n\n");
|
||||
} else {
|
||||
questionString = questionString.arg("<br /><br />" + formatted.at(0));
|
||||
}
|
||||
|
||||
SendConfirmationDialog confirmationDialog(tr("Confirm send coins"), questionString, informative_text, detailed_text, SEND_CONFIRM_DELAY, this);
|
||||
confirmationDialog.exec();
|
||||
QMessageBox::StandardButton retval = static_cast<QMessageBox::StandardButton>(confirmationDialog.result());
|
||||
|
||||
|
|
Loading…
Reference in a new issue