diff options
| author | Wladimir J. van der Laan <[email protected]> | 2015-01-19 12:21:17 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-01-19 12:31:54 +0100 |
| commit | e1aecae33a672b00fac31b6c3cc4c2f6a833ebfb (patch) | |
| tree | ad29e17291e6e138d5f68bfa37550c2b0e3476e5 /src/qt/splashscreen.cpp | |
| parent | Merge pull request #5674 (diff) | |
| parent | qt: avoid hard-coding font names (diff) | |
| download | discoin-e1aecae33a672b00fac31b6c3cc4c2f6a833ebfb.tar.xz discoin-e1aecae33a672b00fac31b6c3cc4c2f6a833ebfb.zip | |
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.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/splashscreen.cpp b/src/qt/splashscreen.cpp index 366ed3df3..e6a7fcaec 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); |