diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2013-12-02 08:52:44 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2013-12-02 08:52:54 +0100 |
commit | b9988c9e74f715f36ab718c61312d94364c16d24 (patch) | |
tree | f101b3d1f0a12cc72c8c6cd479ef446acdb6701f | |
parent | 49dc3a0f1aed095d9d42d574dfe585cb15b8fa8d (diff) | |
parent | bae6c7e32bdbd867169c3e5489332a844a35eb7a (diff) |
Merge pull request #3339
bae6c7e Fix a rare crash on Mac OS X, by removing a setFocus on the payTo field that was not necessary, as the field still receives focus without it. (Ryan Niebur)
-rw-r--r-- | src/qt/sendcoinsentry.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/qt/sendcoinsentry.cpp b/src/qt/sendcoinsentry.cpp index 4be8bf9ebf..4d28f68861 100644 --- a/src/qt/sendcoinsentry.cpp +++ b/src/qt/sendcoinsentry.cpp @@ -97,8 +97,6 @@ void SendCoinsEntry::clear() ui->memoTextLabel_s->clear(); ui->payAmount_s->clear(); - ui->payTo->setFocus(); - // update the display unit, to not use the default ("BTC") updateDisplayUnit(); } |