From aeec2afced94d661e125ca9db911e84c64de69aa Mon Sep 17 00:00:00 2001 From: Mark Liversedge Date: Sat, 27 Apr 2013 18:43:47 +0100 Subject: [PATCH] UI Nits: Scope Bar Font on Mac --- src/GcScopeBar.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/GcScopeBar.cpp b/src/GcScopeBar.cpp index dba95b342..35487bf3d 100644 --- a/src/GcScopeBar.cpp +++ b/src/GcScopeBar.cpp @@ -34,7 +34,11 @@ GcScopeBar::GcScopeBar(MainWindow *main, QWidget *traintool) : QWidget(main), ma searchLabel->setFixedHeight(20); searchLabel->setHighlighted(true); QFont font; +#ifdef Q_OS_MAC + font.setFamily("Lucida Grande"); +#else font.setFamily("Helvetica"); +#endif #ifdef WIN32 font.setPointSize(8); #else