diff --git a/doc/assets-attribution.txt b/doc/assets-attribution.txt index a905074..9468a05 100644 --- a/doc/assets-attribution.txt +++ b/doc/assets-attribution.txt @@ -49,11 +49,6 @@ Designer: Everaldo (Everaldo Coelho) License: GNU/GPL Site: http://findicons.com/icon/17102/reload?id=17102 -Image: src/qt/res/images/splash2.jpg (Wallet image) -Designer: Crobbo (forum), adapted to Litecoin by BitcoinPorn (forum) -Site: https://bitcointalk.org/index.php?topic=32273.0, https://bitcointalk.org/index.php?topic=47417.msg591988#msg591988 -License: Public domain - Icon: src/qt/res/icons/debugwindow.png Designer: Vignoni David Site: http://www.oxygen-icons.org/ diff --git a/src/qt/curecoin.cpp b/src/qt/curecoin.cpp index 10d3919..4251b1c 100644 --- a/src/qt/curecoin.cpp +++ b/src/qt/curecoin.cpp @@ -196,7 +196,10 @@ int main(int argc, char *argv[]) return 1; } - QSplashScreen splash(QPixmap(":/images/splash"), 0); + QString splashPath; + if (GetBoolArg("-testnet")) splashPath=":/images/splash_testnet"; + else splashPath=":/images/splash"; + QSplashScreen splash(QPixmap(splashPath), 0); if (GetBoolArg("-splash", true) && !GetBoolArg("-min")) { splash.show(); diff --git a/src/qt/curecoin.qrc b/src/qt/curecoin.qrc index 819ad34..118801c 100644 --- a/src/qt/curecoin.qrc +++ b/src/qt/curecoin.qrc @@ -45,7 +45,8 @@ res/images/about.png - res/images/splash2.jpg + res/images/splash.jpg + res/images/splash_testnet.jpg res/images/wallet_bgcoin.png @@ -71,8 +72,8 @@ locale/curecoin_es_CL.qm locale/curecoin_et.qm locale/curecoin_eu_ES.qm - locale/curecoin_fa.qm - locale/curecoin_fa_IR.qm + locale/curecoin_fa.qm + locale/curecoin_fa_IR.qm locale/curecoin_fi.qm locale/curecoin_fr.qm locale/curecoin_fr_CA.qm diff --git a/src/qt/res/images/splash2.jpg b/src/qt/res/images/splash.jpg similarity index 100% rename from src/qt/res/images/splash2.jpg rename to src/qt/res/images/splash.jpg diff --git a/src/qt/res/images/splash_testnet.jpg b/src/qt/res/images/splash_testnet.jpg new file mode 100644 index 0000000..eaec3bf Binary files /dev/null and b/src/qt/res/images/splash_testnet.jpg differ