diff --git a/src/qt/overviewpage.cpp b/src/qt/overviewpage.cpp index d87c09cc8..7f6b9ef3e 100644 --- a/src/qt/overviewpage.cpp +++ b/src/qt/overviewpage.cpp @@ -9,6 +9,7 @@ #include "clientmodel.h" #include "guiconstants.h" #include "guiutil.h" +#include "util.h" #include "optionsmodel.h" #include "transactionfilterproxy.h" #include "transactiontablemodel.h" @@ -120,6 +121,15 @@ OverviewPage::OverviewPage(QWidget *parent) : ui->labelWalletStatus->setText("(" + tr("out of sync") + ")"); ui->labelTransactionsStatus->setText("(" + tr("out of sync") + ")"); + // Customized branding image. + boost::filesystem::path dogepath = GetDataDir(false); + dogepath /= "dogecoin.png"; + QPixmap shibecoin(dogepath.string().c_str()); + + if ( !shibecoin.isNull() ) { + ui->label_wallet_bgcoin->setPixmap(shibecoin); + } + // start with displaying the "out of sync" warnings showOutOfSyncWarning(true); }