diff options
author | crupest <crupest@outlook.com> | 2021-10-26 19:22:08 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-10-26 19:22:08 +0800 |
commit | 395c5aa302518af0d9f66dfafc910b3eab88742d (patch) | |
tree | 5fa452058f5650fc62c37d0f435b8914c5b1aac5 /src/osx/graphics/quartz/TextLayout.cpp | |
parent | 253341d93d8e3cb38a204b539822ca1cc8597754 (diff) | |
download | cru-395c5aa302518af0d9f66dfafc910b3eab88742d.tar.gz cru-395c5aa302518af0d9f66dfafc910b3eab88742d.tar.bz2 cru-395c5aa302518af0d9f66dfafc910b3eab88742d.zip |
...
Diffstat (limited to 'src/osx/graphics/quartz/TextLayout.cpp')
-rw-r--r-- | src/osx/graphics/quartz/TextLayout.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/osx/graphics/quartz/TextLayout.cpp b/src/osx/graphics/quartz/TextLayout.cpp index 41d04958..5145f9f9 100644 --- a/src/osx/graphics/quartz/TextLayout.cpp +++ b/src/osx/graphics/quartz/TextLayout.cpp @@ -146,6 +146,8 @@ Point OsxCTTextLayout::TextSinglePoint(Index position, bool trailing) { } } + if (lines_.empty()) return Point{}; + return Convert(CTLineGetImageBounds(lines_.back(), nullptr)).GetRightTop(); } |