From 49af248009146f189c8d4baa2f1e94cccd4e50e4 Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Fri, 6 Feb 2015 11:01:45 +0000
Subject: [PATCH] bigger message font on windows

---
 Fltk/graphicWindow.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Fltk/graphicWindow.cpp b/Fltk/graphicWindow.cpp
index 3243f0214f..a7b53a4438 100644
--- a/Fltk/graphicWindow.cpp
+++ b/Fltk/graphicWindow.cpp
@@ -3010,7 +3010,7 @@ graphicWindow::graphicWindow(bool main, int numTiles, bool detachedMenu)
     _browser->textfont(FL_SCREEN);
     int s = CTX::instance()->msgFontSize;
 #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
     _browser->textsize(s <= 0 ? FL_NORMAL_SIZE - 2 : s);
 #endif
-- 
GitLab