This commit is contained in:
Dmitry Barkhov 2021-02-06 20:34:16 +03:00
Родитель a2733e43ba
Коммит d02f767114
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -177,9 +177,9 @@ namespace Topten.RichTextKit
{
var allRuns = Line.TextBlock.FontRuns as List<FontRun>;
int index = allRuns.IndexOf(this);
if (index <= 0)
if (index - 1 < 0)
return null;
return Line.Runs[index + 1];
return Line.Runs[index - 1];
}
}