Commit 949286a0 authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Исправлен баг с рассчетом метрик строки, в которых нет текста и есть картинки.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@56056 954022d7-b5bf-4e40-9824-e11837661b57
parent 42d0d621
......@@ -20557,7 +20557,13 @@ CParaLineMetrics.prototype =
{
var LineGap1 = ParaPr.Spacing.Line;
var LineGap2 = TextAscent + TextDescent;
LineGap = Math.max( LineGap1, LineGap2 ) - ( TextAscent + TextDescent );
// Специальный случай, когда в строке нет никакого текста
if ( Math.abs( LineGap2 ) < 0.001 )
LineGap = 0;
else
LineGap = Math.max( LineGap1, LineGap2 ) - ( TextAscent + TextDescent );
break;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment