File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -277,8 +277,11 @@ void SendCoinsDialog::on_sendButton_clicked()
277
277
QStringList formatted;
278
278
for (const SendCoinsRecipient &rcp : currentTransaction.getRecipients ())
279
279
{
280
- // generate bold amount string
280
+ // generate bold amount string with wallet name in case of multiwallet
281
281
QString amount = " <b>" + BitcoinUnits::formatHtmlWithUnit (model->getOptionsModel ()->getDisplayUnit (), rcp.amount );
282
+ if (model->isMultiwallet ()) {
283
+ amount.append (" <u>" +tr (" from wallet %1" ).arg (GUIUtil::HtmlEscape (model->getWalletName ()))+" </u> " );
284
+ }
282
285
amount.append (" </b>" );
283
286
// generate monospace address string
284
287
QString address = " <span style='font-family: monospace;'>" + rcp.address ;
You can’t perform that action at this time.
0 commit comments