Commit 42221e45 authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Исправлен баг с тем, что линии подчеркивания и зачеркивания не перемещались в...

Исправлен баг с тем, что линии подчеркивания и зачеркивания не перемещались в зависимости от настройки "Position" (баг 22280).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@56142 954022d7-b5bf-4e40-9824-e11837661b57
parent 19e10241
...@@ -3244,8 +3244,8 @@ ParaRun.prototype = ...@@ -3244,8 +3244,8 @@ ParaRun.prototype =
var CurTextPr = this.Get_CompiledPr( false ); var CurTextPr = this.Get_CompiledPr( false );
var StrikeoutY = Y - CurTextPr.FontSize * g_dKoef_pt_to_mm * 0.27; var StrikeoutY = Y - CurTextPr.FontSize * g_dKoef_pt_to_mm * 0.27 - this.YOffset;
var UnderlineY = Y + UndOff; var UnderlineY = Y + UndOff - this.YOffset;
var LineW = (CurTextPr.FontSize / 18) * g_dKoef_pt_to_mm; var LineW = (CurTextPr.FontSize / 18) * g_dKoef_pt_to_mm;
......
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