diff options
author | Ryan Niebur <ryanryan52@gmail.com> | 2013-12-01 20:31:10 -0800 |
---|---|---|
committer | Ryan Niebur <ryanryan52@gmail.com> | 2013-12-01 20:31:10 -0800 |
commit | bae6c7e32bdbd867169c3e5489332a844a35eb7a (patch) | |
tree | 0a09ff94d27f129c56dba9c93fdb7e2bf0e8f2e0 /src/qt/sendcoinsentry.cpp | |
parent | 40ad6e7f35b539d06d328082b17878f18f0fc22e (diff) |
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.
Diffstat (limited to 'src/qt/sendcoinsentry.cpp')
-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(); } |