Commit 1fdbcaf1 authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Отрисовка подчеркивания орфографии сделана через отдельную функцию. Исправлен...

Отрисовка подчеркивания орфографии сделана через отдельную функцию. Исправлен баг с добавлением пустых параграфов через двойно щелчок мыши, когда последний параграф был параграфом списка (баг 19586).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49478 954022d7-b5bf-4e40-9824-e11837661b57
parent e7610cd2
...@@ -2025,6 +2025,11 @@ CGraphics.prototype = ...@@ -2025,6 +2025,11 @@ CGraphics.prototype =
this.SetIntegerGrid(false); this.SetIntegerGrid(false);
}, },
DrawSpellingLine : function(y0, x0, x1, w)
{
this.drawHorLine(0, y0, x0, x1, w );
},
// smart methods for horizontal / vertical lines // smart methods for horizontal / vertical lines
drawHorLine : function(align, y, x, r, penW) drawHorLine : function(align, y, x, r, penW)
{ {
......
...@@ -1519,7 +1519,7 @@ CDocument.prototype = ...@@ -1519,7 +1519,7 @@ CDocument.prototype =
} }
// Простое добавление стиля, без дополнительных действий // Простое добавление стиля, без дополнительных действий
if ( NextId === this.Styles.Get_Default_Paragraph() ) if ( NextId === this.Styles.Get_Default_Paragraph() || NextId === this.Styles.Get_Default_ParaList() )
NewParagraph.Style_Remove(); NewParagraph.Style_Remove();
else else
NewParagraph.Style_Add_Open( NextId ); NewParagraph.Style_Add_Open( NextId );
......
...@@ -4897,7 +4897,7 @@ Paragraph.prototype = ...@@ -4897,7 +4897,7 @@ Paragraph.prototype =
Element = aSpelling.Get_Next(); Element = aSpelling.Get_Next();
while ( null != Element ) while ( null != Element )
{ {
pGraphics.drawHorLine(0, Element.y0, Element.x0, Element.x1, Element.w ); pGraphics.DrawSpellingLine(Element.y0, Element.x0, Element.x1, Element.w);
Element = aSpelling.Get_Next(); Element = aSpelling.Get_Next();
} }
} }
......
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