diff options
author | Janne Pulkkinen <jannepulk@gmail.com> | 2011-09-27 17:46:19 +0300 |
---|---|---|
committer | Janne Pulkkinen <jannepulk@gmail.com> | 2011-09-27 17:46:19 +0300 |
commit | 609acbf43d8d66102878e47a826c037edc270e46 (patch) | |
tree | 60701f1c964415ac89014eac915619fe16ddd8db /src/qt/bitcoingui.cpp | |
parent | 010c4fc0b5ca8ceccf15417b833bea4ce1016f43 (diff) |
Send Coins page not cleared when changing tabs. Clear all button for clearing the entries
Diffstat (limited to 'src/qt/bitcoingui.cpp')
-rw-r--r-- | src/qt/bitcoingui.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 3e6b547006..c9a892fd1d 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -525,7 +525,9 @@ void BitcoinGUI::gotoSendCoinsPage() if(centralWidget->currentWidget() != sendCoinsPage) { // Clear the current contents if we arrived from another tab - sendCoinsPage->clear(); + // Not necessary especially if the user is jumping between Transactions + // and Send Coins pages. - Matoking + //sendCoinsPage->clear(); } centralWidget->setCurrentWidget(sendCoinsPage); |