From bae6c7e32bdbd867169c3e5489332a844a35eb7a Mon Sep 17 00:00:00 2001 From: Ryan Niebur Date: Sun, 1 Dec 2013 20:31:10 -0800 Subject: [PATCH] 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. --- src/qt/sendcoinsentry.cpp | 2 -- 1 file changed, 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(); }