diff --git a/doc/assets-attribution.txt b/doc/assets-attribution.txt
index 623a5027ca..b3c9c7c7aa 100644
--- a/doc/assets-attribution.txt
+++ b/doc/assets-attribution.txt
@@ -26,7 +26,8 @@ Site: https://forum.bitcoin.org/index.php?topic=15276.0
License: You are free to do with these icons as you wish, including selling,
copying, modifying etc.
-Icon: src/qt/res/icons/configure.png, src/qt/res/icons/quit.png
+Icon: src/qt/res/icons/configure.png, src/qt/res/icons/quit.png,
+ src/qt/res/icons/editcopy.png, src/qt/res/icons/editpaste.png
Designer: http://www.everaldo.com
Icon Pack: Crystal SVG
License: LGPL
diff --git a/src/qt/bitcoin.qrc b/src/qt/bitcoin.qrc
index 3d4a3e163b..663eb4869d 100644
--- a/src/qt/bitcoin.qrc
+++ b/src/qt/bitcoin.qrc
@@ -19,6 +19,8 @@
res/icons/clock5.png
res/icons/configure.png
res/icons/receive.png
+ res/icons/editpaste.png
+ res/icons/editcopy.png
res/images/about.png
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp
index ed09ac9c3e..1b4e13c420 100644
--- a/src/qt/bitcoingui.cpp
+++ b/src/qt/bitcoingui.cpp
@@ -93,7 +93,7 @@ BitcoinGUI::BitcoinGUI(QWidget *parent):
hbox_balance->addSpacing(5);/* Add some spacing between the label and the text */
labelBalance = new QLabel();
- labelBalance->setFont(QFont("Monospace"));
+ labelBalance->setFont(QFont("Monospace", -1, QFont::Bold));
labelBalance->setToolTip(tr("Your current balance"));
hbox_balance->addWidget(labelBalance);
hbox_balance->addStretch(1);
diff --git a/src/qt/forms/sendcoinsdialog.ui b/src/qt/forms/sendcoinsdialog.ui
index 46c71456af..3212424896 100644
--- a/src/qt/forms/sendcoinsdialog.ui
+++ b/src/qt/forms/sendcoinsdialog.ui
@@ -7,7 +7,7 @@
0
0
736
- 149
+ 193
@@ -16,10 +16,70 @@
-
+
-
+
+
+ 0
+
+
-
+
+
+ The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L)
+
+
+ 34
+
+
+
+ -
+
+
+ Look up adress in address book
+
+
+
+
+
+
+ :/icons/address-book:/icons/address-book
+
+
+ Alt+A
+
+
+ false
+
+
+ false
+
+
+
+ -
+
+
+ Paste address from system clipboard
+
+
+
+
+
+
+ :/icons/editpaste:/icons/editpaste
+
+
+ Alt+P
+
+
+ false
+
+
+
+
+
-
- &Amount:
+ A&mount:
Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter
@@ -42,42 +102,6 @@
- -
-
-
- The address to send the payment to (e.g. 1NS17iag9jJgTHD1VXjvLCEnZuQ3rJDE9L)
-
-
- 34
-
-
-
- -
-
-
- Paste address from system clipboard
-
-
- &Paste
-
-
- false
-
-
-
- -
-
-
- Look up adress in address book
-
-
- Address &Book...
-
-
- false
-
-
-
-
@@ -91,7 +115,7 @@
-
-
+
-
@@ -101,7 +125,7 @@
Add specified destination address to address book
- Add to address book as
+ A&dd to address book as
@@ -187,7 +211,7 @@
BitcoinAmountField
- QWidget
+ QLineEdit
1
@@ -197,8 +221,8 @@
addToAddressBook
addAsLabel
payAmount
- pasteButton
addressBookButton
+ pasteButton
sendButton
buttonBox
diff --git a/src/qt/res/icons/editcopy.png b/src/qt/res/icons/editcopy.png
new file mode 100644
index 0000000000..f882aa2ad8
Binary files /dev/null and b/src/qt/res/icons/editcopy.png differ
diff --git a/src/qt/res/icons/editpaste.png b/src/qt/res/icons/editpaste.png
new file mode 100644
index 0000000000..a192060bdd
Binary files /dev/null and b/src/qt/res/icons/editpaste.png differ