aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2013-12-02 08:52:44 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2013-12-02 08:52:54 +0100
commitb9988c9e74f715f36ab718c61312d94364c16d24 (patch)
treef101b3d1f0a12cc72c8c6cd479ef446acdb6701f
parent49dc3a0f1aed095d9d42d574dfe585cb15b8fa8d (diff)
parentbae6c7e32bdbd867169c3e5489332a844a35eb7a (diff)
downloadbitcoin-b9988c9e74f715f36ab718c61312d94364c16d24.tar.xz
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.cpp2
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();
}