diff options
| author | Luke Dashjr <[email protected]> | 2014-11-06 19:55:52 +0000 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-12-27 19:04:49 +0100 |
| commit | 9b7d3fb16574f1604c0837f9ac0f402672add87f (patch) | |
| tree | bd1944cb29df87da0e0b5bfa0ee6076721fc3c8f /src/qt/sendcoinsentry.cpp | |
| parent | Merge pull request #5547 (diff) | |
| download | discoin-9b7d3fb16574f1604c0837f9ac0f402672add87f.tar.xz discoin-9b7d3fb16574f1604c0837f9ac0f402672add87f.zip | |
Adopt style colour for button icons
Diffstat (limited to 'src/qt/sendcoinsentry.cpp')
| -rw-r--r-- | src/qt/sendcoinsentry.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/qt/sendcoinsentry.cpp b/src/qt/sendcoinsentry.cpp index ad9189d20..6db6eee75 100644 --- a/src/qt/sendcoinsentry.cpp +++ b/src/qt/sendcoinsentry.cpp @@ -9,6 +9,7 @@ #include "addresstablemodel.h" #include "guiutil.h" #include "optionsmodel.h" +#include "scicon.h" #include "walletmodel.h" #include <QApplication> @@ -21,6 +22,12 @@ SendCoinsEntry::SendCoinsEntry(QWidget *parent) : { ui->setupUi(this); + ui->addressBookButton->setIcon(SingleColorIcon(":/icons/address-book")); + ui->pasteButton->setIcon(SingleColorIcon(":/icons/editpaste")); + ui->deleteButton->setIcon(SingleColorIcon(":/icons/remove")); + ui->deleteButton_is->setIcon(SingleColorIcon(":/icons/remove")); + ui->deleteButton_s->setIcon(SingleColorIcon(":/icons/remove")); + setCurrentWidget(ui->SendCoins); #ifdef Q_OS_MAC |