Skip to content

Commit 345b522

Browse files
committed
GUI - increase default log font size on macOS
1 parent d351c6b commit 345b522

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

app/gui/qt/widgets/sonicpilog.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,11 @@ void SonicPiLog::setTextBackgroundColor(QColor c)
5555

5656
void SonicPiLog::setFontFamily(QString font_name)
5757
{
58-
58+
#ifdef __APPLE__
59+
setFont(QFont(font_name, 14, -1, false));
60+
#else
5961
setFont(QFont(font_name, 8, -1, false));
62+
#endif
6063
}
6164

6265
void SonicPiLog::appendPlainText(QString text)

0 commit comments

Comments
 (0)