diff options
| author | Ryan Niebur <[email protected]> | 2013-12-01 20:31:10 -0800 |
|---|---|---|
| committer | Ryan Niebur <[email protected]> | 2013-12-01 20:31:10 -0800 |
| commit | bae6c7e32bdbd867169c3e5489332a844a35eb7a (patch) | |
| tree | 0a09ff94d27f129c56dba9c93fdb7e2bf0e8f2e0 /src/qt/sendcoinsentry.cpp | |
| parent | Merge pull request #3306 (diff) | |
| download | discoin-bae6c7e32bdbd867169c3e5489332a844a35eb7a.tar.xz discoin-bae6c7e32bdbd867169c3e5489332a844a35eb7a.zip | |
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 4be8bf9eb..4d28f6886 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(); } |