Merge 04bfe8c9c3 into merged_master (Bitcoin PR bitcoin-core/gui#774)

This commit is contained in:
Byron Hambly 2025-11-05 19:02:19 +02:00
commit d585dc43eb
No known key found for this signature in database
GPG key ID: DE8F6EA20A661697

View file

@ -533,6 +533,9 @@ void TransactionView::showDetails()
TransactionDescDialog *dlg = new TransactionDescDialog(selection.at(0));
dlg->setAttribute(Qt::WA_DeleteOnClose);
m_opened_dialogs.append(dlg);
connect(dlg, &QObject::destroyed, [this, dlg] {
m_opened_dialogs.removeOne(dlg);
});
dlg->show();
}
}