aboutsummaryrefslogtreecommitdiff
path: root/src/qt/splashscreen.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2015-01-19 12:21:17 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2015-01-19 12:31:54 +0100
commite1aecae33a672b00fac31b6c3cc4c2f6a833ebfb (patch)
treead29e17291e6e138d5f68bfa37550c2b0e3476e5 /src/qt/splashscreen.cpp
parenta0abff2755d17b5ff36f977a894a8128c75b4445 (diff)
parent73cd4edb4f1ff98c20549a609e96fa40834f5e73 (diff)
downloadbitcoin-e1aecae33a672b00fac31b6c3cc4c2f6a833ebfb.tar.xz
Merge pull request #5671
73cd4ed qt: avoid hard-coding font names (Cory Fields) 52954e6 qt: fix broken unicode chars on osx 10.10 (Cory Fields) f5ad78b qt: fonts: allow SubstituteFonts to filter based on user's language (Cory Fields)
Diffstat (limited to 'src/qt/splashscreen.cpp')
-rw-r--r--src/qt/splashscreen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/splashscreen.cpp b/src/qt/splashscreen.cpp
index 366ed3df3d..e6a7fcaec5 100644
--- a/src/qt/splashscreen.cpp
+++ b/src/qt/splashscreen.cpp
@@ -42,7 +42,7 @@ SplashScreen::SplashScreen(Qt::WindowFlags f, const NetworkStyle *networkStyle)
QString copyrightText = QChar(0xA9)+QString(" 2009-%1 ").arg(COPYRIGHT_YEAR) + QString(tr("The Bitcoin Core developers"));
QString titleAddText = networkStyle->getTitleAddText();
- QString font = "Arial";
+ QString font = QApplication::font().toString();
// create a bitmap according to device pixelratio
QSize splashSize(480*devicePixelRatio,320*devicePixelRatio);