Commit 7505f237 authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Исправлен баг из-за которрого не применялись функции увеличения/уменьшения...

Исправлен баг из-за которрого не применялись функции увеличения/уменьшения размера для знака параграфа (баг 19626).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49495 954022d7-b5bf-4e40-9824-e11837661b57
parent 4d294a73
...@@ -5806,7 +5806,7 @@ Paragraph.prototype = ...@@ -5806,7 +5806,7 @@ Paragraph.prototype =
else else
{ {
// Выставляем настройки для символа параграфа // Выставляем настройки для символа параграфа
if ( undefined != typeof(this.TextPr.Value.FontSize) ) if ( undefined != this.TextPr.Value.FontSize )
this.TextPr.Set_FontSize( this.Internal_IncDecFontSize( bIncrease, this.TextPr.Value.FontSize ) ); this.TextPr.Set_FontSize( this.Internal_IncDecFontSize( bIncrease, this.TextPr.Value.FontSize ) );
else else
this.TextPr.Set_FontSize( this.Internal_IncDecFontSize( bIncrease, StartTextPr.FontSize ) ); this.TextPr.Set_FontSize( this.Internal_IncDecFontSize( bIncrease, StartTextPr.FontSize ) );
......
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