diff --git a/logo.png b/logo.png index ba624d88..9ed203bf 100644 Binary files a/logo.png and b/logo.png differ diff --git a/rai/rai_wallet/entry.cpp b/rai/rai_wallet/entry.cpp index 4c6ba6df..fe4f0bec 100755 --- a/rai/rai_wallet/entry.cpp +++ b/rai/rai_wallet/entry.cpp @@ -192,11 +192,14 @@ bool update_config (qt_wallet_config & config_a, boost::filesystem::path const & int run_wallet (QApplication & application, int argc, char * const * argv) { rai_qt::eventloop_processor processor; - QPixmap pixmap("logo.png"); - QSplashScreen splash(pixmap); - splash.show(); auto working (rai::working_path ()); boost::filesystem::create_directories (working); + QPixmap pixmap(":/logo.png"); + QSplashScreen *splash = new QSplashScreen(pixmap); + splash->show(); + application.processEvents(); + splash->showMessage(QSplashScreen::tr("Remember - Backup Your Wallet Seed"), Qt::AlignBottom | Qt::AlignHCenter, Qt::black); + application.processEvents(); qt_wallet_config config (working); auto config_path ((working / "config.json")); int result (0); @@ -249,7 +252,7 @@ int run_wallet (QApplication & application, int argc, char * const * argv) { rpc.start (); } - auto gui (std::make_shared (application, processor, *node, wallet, config.account)); + auto gui (std::make_shared (application, *node, wallet, config.account)); splash.close(); gui->start (); gui->client_window->show (); diff --git a/resources.qrc b/resources.qrc new file mode 100644 index 00000000..b9485752 --- /dev/null +++ b/resources.qrc @@ -0,0 +1,6 @@ + + + + logo.png + +