diff options
| author | Wladimir J. van der Laan <[email protected]> | 2013-11-16 09:55:07 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2013-11-16 09:55:07 +0100 |
| commit | 3443adecf100181c6e668f2e7a09bf2cfd794621 (patch) | |
| tree | 787a1f65ce54baeebc4702c3b7c4baa1ddf732ba /src/qt/sendcoinsentry.cpp | |
| parent | Merge pull request #3255 (diff) | |
| parent | Coin Control Features (diff) | |
| download | discoin-3443adecf100181c6e668f2e7a09bf2cfd794621.tar.xz discoin-3443adecf100181c6e668f2e7a09bf2cfd794621.zip | |
Merge pull request #3253
6a86c24 Coin Control Features (Cozz Lovan)
8dfd8c6 pass nBytes as parameter to GetMinFee(..) (Cozz Lovan)
Diffstat (limited to 'src/qt/sendcoinsentry.cpp')
| -rw-r--r-- | src/qt/sendcoinsentry.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/sendcoinsentry.cpp b/src/qt/sendcoinsentry.cpp index 2d240f1fe..f6f86eb82 100644 --- a/src/qt/sendcoinsentry.cpp +++ b/src/qt/sendcoinsentry.cpp @@ -75,6 +75,8 @@ void SendCoinsEntry::setModel(WalletModel *model) if (model && model->getOptionsModel()) connect(model->getOptionsModel(), SIGNAL(displayUnitChanged(int)), this, SLOT(updateDisplayUnit())); + connect(ui->payAmount, SIGNAL(textChanged()), this, SIGNAL(payAmountChanged())); + clear(); } |