diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2014-08-06 15:06:40 -0400 |
---|---|---|
committer | Cory Fields <cory-nospam-@coryfields.com> | 2014-08-07 12:34:53 -0400 |
commit | 292cc072f3bada256bc6af9970512eb9dec8d93a (patch) | |
tree | 64eff9c20e4dba2d2b8176f45865bc5ea77088be /src/qt/bitcoin.cpp | |
parent | 003bbd5f7672d7fd4f40478fd57cc4e03c30f933 (diff) |
qt: fix unicode character display on osx when building with 10.7 sdk
Diffstat (limited to 'src/qt/bitcoin.cpp')
-rw-r--r-- | src/qt/bitcoin.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index ea706d9f25..a43e7cb756 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -489,6 +489,9 @@ int main(int argc, char *argv[]) Q_INIT_RESOURCE(bitcoin); Q_INIT_RESOURCE(bitcoin_locale); + + GUIUtil::SubstituteFonts(); + BitcoinApplication app(argc, argv); #if QT_VERSION > 0x050100 // Generate high-dpi pixmaps |