diff options
| -rw-r--r-- | src/fl_font_mac.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fl_font_mac.cxx b/src/fl_font_mac.cxx index a65474774..42213825d 100644 --- a/src/fl_font_mac.cxx +++ b/src/fl_font_mac.cxx @@ -341,7 +341,7 @@ void fl_draw(const char* str, int n, int x, int y) { MoveTo(x, y); DrawText((const char *)str, 0, n); #elif defined(__APPLE_QUARTZ__) - fl_draw(str, n, (float)x, (float)y); + fl_draw(str, n, (float)x-0.0f, (float)y-0.5f); #else # error : neither Quartz no Quickdraw chosen #endif |
