Qt: Fix monospace font in osx 10.9

The "Monospace" hint was added in Qt 4.8, and it works as intended as opposed
to "TypeWriter" which fails to load a font.
This commit is contained in:
Cory Fields 2014-05-24 11:12:47 -04:00
parent 7a419a61b6
commit e9df7f8757

View file

@ -76,7 +76,11 @@ QString dateTimeStr(qint64 nTime)
QFont bitcoinAddressFont() QFont bitcoinAddressFont()
{ {
QFont font("Monospace"); QFont font("Monospace");
#if QT_VERSION >= 0x040800
font.setStyleHint(QFont::Monospace);
#else
font.setStyleHint(QFont::TypeWriter); font.setStyleHint(QFont::TypeWriter);
#endif
return font; return font;
} }