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

Исправлен баг с селектом (баг 24920). Исправлен баг с удалением буквицы (баг 20358 reop).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@57128 954022d7-b5bf-4e40-9824-e11837661b57
parent 159bdbab
...@@ -2779,7 +2779,7 @@ CDocument.prototype = ...@@ -2779,7 +2779,7 @@ CDocument.prototype =
// Передвинем курсор в начало следующего параграфа, и рассчитаем текстовые настройки и расстояния между строк // Передвинем курсор в начало следующего параграфа, и рассчитаем текстовые настройки и расстояния между строк
Next.Cursor_MoveToStartPos(); Next.Cursor_MoveToStartPos();
var Spacing = Next.Get_CompiledPr2(false).ParaPr.Spacing.Copy(); var Spacing = Next.Get_CompiledPr2(false).ParaPr.Spacing.Copy();
var TextPr = Next.Internal_CalculateTextPr(Next.CurPos.ContentPos); var TextPr = Next.Get_FirstRunPr();
var Count = FrameParas.length; var Count = FrameParas.length;
for ( var Index = 0; Index < Count; Index++ ) for ( var Index = 0; Index < Count; Index++ )
...@@ -2788,7 +2788,8 @@ CDocument.prototype = ...@@ -2788,7 +2788,8 @@ CDocument.prototype =
FramePara.Set_FramePr( undefined, true ); FramePara.Set_FramePr( undefined, true );
FramePara.Set_Spacing( Spacing, true ); FramePara.Set_Spacing( Spacing, true );
FramePara.Select_All(); FramePara.Select_All();
FramePara.Add( new ParaTextPr( TextPr ) ); FramePara.Clear_TextFormatting();
FramePara.Apply_TextPr(TextPr, false);
} }
...@@ -9772,8 +9773,8 @@ CDocument.prototype = ...@@ -9772,8 +9773,8 @@ CDocument.prototype =
MouseEvent.ClickCount = 1; MouseEvent.ClickCount = 1;
MouseEvent.Type = g_mouse_event_type_down; MouseEvent.Type = g_mouse_event_type_down;
var OldX = CurPara.CurPos.RealX; var OldX = CurPara.CurPos.X;
var OldY = CurPara.CurPos.RealY; var OldY = CurPara.CurPos.Y;
if ( true === CurPara.Parent.Is_DrawingShape() ) if ( true === CurPara.Parent.Is_DrawingShape() )
{ {
......
...@@ -8371,6 +8371,8 @@ Paragraph.prototype = ...@@ -8371,6 +8371,8 @@ Paragraph.prototype =
var Item = this.Content[Index]; var Item = this.Content[Index];
Item.Clear_TextFormatting( DefHyper ); Item.Clear_TextFormatting( DefHyper );
} }
this.TextPr.Clear_Style();
}, },
Set_Ind : function(Ind, bDeleteUndefined) Set_Ind : function(Ind, bDeleteUndefined)
......
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