Benedikt Stebner
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/Skia/Avalonia.Skia/TextShaperImpl.cs
|
|
@ -82,7 +82,7 @@ namespace Avalonia.Skia |
|
|
|
|
|
|
|
|
if (codepoint.IsBreakChar) |
|
|
if (codepoint.IsBreakChar) |
|
|
{ |
|
|
{ |
|
|
if (i < text.Length) |
|
|
if (i + 1 < text.Length) |
|
|
{ |
|
|
{ |
|
|
var nextCodepoint = Codepoint.ReadAt(text, i + 1, out _); |
|
|
var nextCodepoint = Codepoint.ReadAt(text, i + 1, out _); |
|
|
|
|
|
|
|
|
|