diff --git a/application.qrc b/application.qrc index 0f7de37..7bb111d 100644 --- a/application.qrc +++ b/application.qrc @@ -9,5 +9,6 @@ res/zcashdlogo.gif + res/logobig.gif diff --git a/res/icon.png b/res/icon.png deleted file mode 100644 index d1f9dd8..0000000 Binary files a/res/icon.png and /dev/null differ diff --git a/res/logobig.gif b/res/logobig.gif new file mode 100644 index 0000000..c427384 Binary files /dev/null and b/res/logobig.gif differ diff --git a/src/connection.cpp b/src/connection.cpp index 2d31d5d..ef8848b 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -15,7 +15,8 @@ ConnectionLoader::ConnectionLoader(MainWindow* main, RPC* rpc) { d = new QDialog(main); connD = new Ui_ConnectionDialog(); connD->setupUi(d); - connD->topIcon->setBasePixmap(QIcon(":/icons/res/icon.ico").pixmap(256, 256)); + QPixmap logo(":/img/res/logobig.gif"); + connD->topIcon->setBasePixmap(logo.scaled(256, 256, Qt::KeepAspectRatio, Qt::SmoothTransformation)); } ConnectionLoader::~ConnectionLoader() { diff --git a/src/rpc.cpp b/src/rpc.cpp index 285c672..775f31b 100644 --- a/src/rpc.cpp +++ b/src/rpc.cpp @@ -802,7 +802,6 @@ void RPC::watchTxStatus() { // Get the ZEC->USD price from coinmarketcap using their API void RPC::refreshZECPrice() { - qDebug() << QString::fromStdString("Getting ZEC price"); if (conn == nullptr) return noConnection();