aboutsummaryrefslogtreecommitdiff
path: root/src/qt/bitcoingui.cpp
diff options
context:
space:
mode:
authorJanne Pulkkinen <jannepulk@gmail.com>2011-09-27 17:46:19 +0300
committerJanne Pulkkinen <jannepulk@gmail.com>2011-09-27 17:46:19 +0300
commit609acbf43d8d66102878e47a826c037edc270e46 (patch)
tree60701f1c964415ac89014eac915619fe16ddd8db /src/qt/bitcoingui.cpp
parent010c4fc0b5ca8ceccf15417b833bea4ce1016f43 (diff)
downloadbitcoin-609acbf43d8d66102878e47a826c037edc270e46.tar.xz
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.cpp4
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);