54@@ -55,7 +55,7 @@ CoinControlDialog::CoinControlDialog(CCoinControl& coin_control, WalletModel* _m
55 contextMenu->addAction(tr("&Copy address"), this, &CoinControlDialog::copyAddress);
56 contextMenu->addAction(tr("Copy &label"), this, &CoinControlDialog::copyLabel);
57 contextMenu->addAction(tr("Copy &amount"), this, &CoinControlDialog::copyAmount);
58- copyTransactionHashAction = contextMenu->addAction(tr("Copy transaction &ID"), this, &CoinControlDialog::copyTransactionHash);
59+ m_copy_transaction_outpoint_action = contextMenu->addAction(tr("Copy transaction &ID and output index"), this, &CoinControlDialog::copyTransactionOutpoint);
Anything against having both actions?
@promag seems a bit more GUI clutter for no purpose. It’s a manual action touching the clipboard so it can’t interfere with any automation, so the user can always just manually delete the
:n
on the end if they don’t want it. IMO txid alone is useless in this situation because this is a specific outpoint selection dialog.