diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-10-22 09:03:50 +0200 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-10-22 09:03:50 +0200 |
commit | 81bdc9a512d2500568ea995f067b3d493a82afe3 (patch) | |
tree | d64672cb2dac9d7bd5a6eeaea21b4f336903cfed /src/qt/splashscreen.cpp | |
parent | be484db274e6de7e7b6880d04b2d84e20b719b9a (diff) |
splashscreen: use TestNet() instead of unneeded string processing
Diffstat (limited to 'src/qt/splashscreen.cpp')
-rw-r--r-- | src/qt/splashscreen.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/qt/splashscreen.cpp b/src/qt/splashscreen.cpp index 7c9bc46c46..07b71a3c9a 100644 --- a/src/qt/splashscreen.cpp +++ b/src/qt/splashscreen.cpp @@ -66,9 +66,8 @@ SplashScreen::SplashScreen(const QPixmap &pixmap, Qt::WindowFlags f) : pixPaint.setFont(QFont(font, 10*fontFactor)); pixPaint.drawText(newPixmap.width()-titleTextWidth-paddingRight,paddingTop+titleCopyrightVSpace,copyrightText); - // draw testnet string if -testnet is on - if(QApplication::applicationName().contains(QString("-testnet"))) { - // draw copyright stuff + // draw testnet string if testnet is on + if(TestNet()) { QFont boldFont = QFont(font, 10*fontFactor); boldFont.setWeight(QFont::Bold); pixPaint.setFont(boldFont); |