aboutsummaryrefslogtreecommitdiff
path: root/src/qt/bitcoingui.cpp
diff options
context:
space:
mode:
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);