From addf30ecdf192e23b972734cbadb0788100e3fc1 Mon Sep 17 00:00:00 2001 From: PeterN Date: Sat, 18 Feb 2023 10:50:20 +0000 Subject: [PATCH] Fix #10477: Not enough space for text due to rounding down (OSX) (#10489) --- src/os/macosx/string_osx.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/os/macosx/string_osx.cpp b/src/os/macosx/string_osx.cpp index c79ca88894..c96c541994 100644 --- a/src/os/macosx/string_osx.cpp +++ b/src/os/macosx/string_osx.cpp @@ -15,6 +15,7 @@ #include "../../fontcache.h" #include "../../zoom_func.h" #include "macos.h" +#include #include @@ -253,7 +254,7 @@ CoreTextParagraphLayout::CoreTextVisualRun::CoreTextVisualRun(CTRunRef run, Font this->positions[i * 2 + 1] = pts[i].y; } } - this->total_advance = (int)CTRunGetTypographicBounds(run, CFRangeMake(0, 0), nullptr, nullptr, nullptr); + this->total_advance = (int)std::ceil(CTRunGetTypographicBounds(run, CFRangeMake(0, 0), nullptr, nullptr, nullptr)); this->positions[this->glyphs.size() * 2] = this->positions[0] + this->total_advance; }