Browse Source

[qt] send: Clear All also resets coin control options

Github-Pull: #12432
Rebased-From: f506c0a7f8ea6bae089177884e44e38cd2bfeb23
0.16
Sjors Provoost 7 years ago committed by MarcoFalke
parent
commit
f78e7f6589
  1. 6
      src/qt/sendcoinsdialog.cpp

6
src/qt/sendcoinsdialog.cpp

@ -375,6 +375,12 @@ void SendCoinsDialog::on_sendButton_clicked()
void SendCoinsDialog::clear() void SendCoinsDialog::clear()
{ {
// Clear coin control settings
CoinControlDialog::coinControl()->UnSelectAll();
ui->checkBoxCoinControlChange->setChecked(false);
ui->lineEditCoinControlChange->clear();
coinControlUpdateLabels();
// Remove entries until only one left // Remove entries until only one left
while(ui->entries->count()) while(ui->entries->count())
{ {

Loading…
Cancel
Save