diff options
author | Matt Corallo <matt@bluematt.me> | 2011-12-07 00:00:04 -0500 |
---|---|---|
committer | Matt Corallo <matt@bluematt.me> | 2012-01-05 00:29:28 -0500 |
commit | 9a93c4c02471fea7acb4882efaebaaefc1733466 (patch) | |
tree | 05504e635175636408d824e6aeb17bf7a69b8132 /src/qt/sendcoinsentry.cpp | |
parent | 96d3bcb99690726d4c0e28355cc87c25e14f4c8d (diff) |
Automatically refocus on new SendCoinsEntrys and scroll to them.
Diffstat (limited to 'src/qt/sendcoinsentry.cpp')
-rw-r--r-- | src/qt/sendcoinsentry.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/qt/sendcoinsentry.cpp b/src/qt/sendcoinsentry.cpp index 23b11ccdde..ab5460f8c2 100644 --- a/src/qt/sendcoinsentry.cpp +++ b/src/qt/sendcoinsentry.cpp @@ -151,3 +151,8 @@ bool SendCoinsEntry::isClear() return ui->payTo->text().isEmpty(); } +void SendCoinsEntry::setFocus() +{ + ui->payTo->setFocus(); +} + |