Skip to content
Snippets Groups Projects
Commit 49af2480 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

bigger message font on windows

parent f6cd999a
No related branches found
No related tags found
No related merge requests found
...@@ -3010,7 +3010,7 @@ graphicWindow::graphicWindow(bool main, int numTiles, bool detachedMenu) ...@@ -3010,7 +3010,7 @@ graphicWindow::graphicWindow(bool main, int numTiles, bool detachedMenu)
_browser->textfont(FL_SCREEN); _browser->textfont(FL_SCREEN);
int s = CTX::instance()->msgFontSize; int s = CTX::instance()->msgFontSize;
#if defined(WIN32) // screen font on Windows is really small #if defined(WIN32) // screen font on Windows is really small
_browser->textsize(s <= 0 ? FL_NORMAL_SIZE - 1 : s); _browser->textsize(s <= 0 ? FL_NORMAL_SIZE : s);
#else #else
_browser->textsize(s <= 0 ? FL_NORMAL_SIZE - 2 : s); _browser->textsize(s <= 0 ? FL_NORMAL_SIZE - 2 : s);
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment