diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp
index 06c2034da..add8abc99 100644
--- a/src/qt/bitcoingui.cpp
+++ b/src/qt/bitcoingui.cpp
@@ -474,6 +474,7 @@ void BitcoinGUI::gotoReceiveCoinsPage()
void BitcoinGUI::gotoSendCoinsPage()
{
sendCoinsAction->setChecked(true);
+ sendCoinsPage->clear();
centralWidget->setCurrentWidget(sendCoinsPage);
exportAction->setEnabled(false);
}
diff --git a/src/qt/forms/sendcoinsdialog.ui b/src/qt/forms/sendcoinsdialog.ui
index a5c38a530..c3b966cac 100644
--- a/src/qt/forms/sendcoinsdialog.ui
+++ b/src/qt/forms/sendcoinsdialog.ui
@@ -107,6 +107,9 @@
34
+
+
+
-
@@ -178,7 +181,7 @@
- 120
+ 150
0
@@ -197,25 +200,6 @@
- -
-
-
-
- 0
- 0
-
-
-
- Abort the send action
-
-
- QDialogButtonBox::Cancel
-
-
- false
-
-
-
-
@@ -248,7 +232,6 @@
addAsLabel
payAmount
sendButton
- buttonBox
diff --git a/src/qt/res/icons/notsynced.png b/src/qt/res/icons/notsynced.png
new file mode 100644
index 000000000..c9e71184c
Binary files /dev/null and b/src/qt/res/icons/notsynced.png differ
diff --git a/src/qt/res/icons/synced.png b/src/qt/res/icons/synced.png
new file mode 100644
index 000000000..910fc396e
Binary files /dev/null and b/src/qt/res/icons/synced.png differ
diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendcoinsdialog.cpp
index 91397a7d2..9724368a9 100644
--- a/src/qt/sendcoinsdialog.cpp
+++ b/src/qt/sendcoinsdialog.cpp
@@ -23,6 +23,7 @@ SendCoinsDialog::SendCoinsDialog(QWidget *parent, const QString &address) :
ui->payTo->setPlaceholderText(tr("Enter a Bitcoin address (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L)"));
ui->addAsLabel->setPlaceholderText(tr("Enter a label for this address to add it to your address book"));
#endif
+
GUIUtil::setupAddressWidget(ui->payTo, this);
// Set initial send-to address if provided