Port custom shibeface from b14d83aabd

This commit is contained in:
langerhans 2014-04-09 20:14:10 +02:00
parent 753eba9753
commit fa33ce9b3b

View file

@ -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);
}