From b6db1cb4b2055bc222417d45856aab0dad76710e Mon Sep 17 00:00:00 2001 From: Flavio Date: Thu, 24 Oct 2013 16:43:54 +0200 Subject: [PATCH] Fix font on OS X Mavericks --- src/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 95e9f12..fe894e6 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -35,6 +35,8 @@ int main(int argc, char **argv) { #ifdef Q_WS_MAC mac::MacMain(); + // https://bugreports.qt-project.org/browse/QTBUG-32789 + QFont::insertSubstitution(".Lucida Grande UI", "Lucida Grande"); #endif QtSingleApplication app(argc, argv); -- 2.39.5