Coin Control: button inputs -> show actual coin control dialog
| 912 | |
| 913 | // Coin Control: button inputs -> show actual coin control dialog |
| 914 | void SendCoinsDialog::coinControlButtonClicked() |
| 915 | { |
| 916 | auto dlg = new CoinControlDialog(*m_coin_control, model, platformStyle); |
| 917 | connect(dlg, &QDialog::finished, this, &SendCoinsDialog::coinControlUpdateLabels); |
| 918 | GUIUtil::ShowModalDialogAsynchronously(dlg); |
| 919 | } |
| 920 | |
| 921 | // Coin Control: checkbox custom change address |
| 922 | #if (QT_VERSION >= QT_VERSION_CHECK(6, 7, 0)) |
nothing calls this directly
no test coverage detected