diff --git a/src/os/macosx/string_osx.cpp b/src/os/macosx/string_osx.cpp index 1cebbe3e16..a66ca545e5 100644 --- a/src/os/macosx/string_osx.cpp +++ b/src/os/macosx/string_osx.cpp @@ -16,6 +16,7 @@ #include "../../zoom_func.h" #include "../../scope.h" #include "macos.h" +#include #include @@ -254,7 +255,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; }