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

Исправлен баг с раположением окна комментариев к комментарию в буквице (баг...

Исправлен баг с раположением окна комментариев к комментарию в буквице (баг 24911). Исправлен баг с мигающих окном комментариев (баг 24910). Исправлен баг с обновлением интерфейса (баг 24905).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@57131 954022d7-b5bf-4e40-9824-e11837661b57
parent e797c2c5
...@@ -988,6 +988,10 @@ ParaComment.prototype = ...@@ -988,6 +988,10 @@ ParaComment.prototype =
{ {
return new ParaRun(); return new ParaRun();
}, },
Apply_TextPr : function()
{
},
//----------------------------------------------------------------------------------- //-----------------------------------------------------------------------------------
// Функции пересчета // Функции пересчета
//----------------------------------------------------------------------------------- //-----------------------------------------------------------------------------------
...@@ -1090,6 +1094,21 @@ ParaComment.prototype = ...@@ -1090,6 +1094,21 @@ ParaComment.prototype =
Shift_Range : function(Dx, Dy, _CurLine, _CurRange) Shift_Range : function(Dx, Dy, _CurLine, _CurRange)
{ {
var DocumentComments = editor.WordControl.m_oLogicDocument.Comments;
var Comment = DocumentComments.Get_ById( this.CommentId );
if ( null === Comment )
return;
if ( true === this.Start )
{
Comment.m_oStartInfo.X += Dx;
Comment.m_oStartInfo.Y += Dy;
}
else
{
Comment.m_oEndInfo.X += Dx;
Comment.m_oEndInfo.Y += Dy;
}
}, },
//----------------------------------------------------------------------------------- //-----------------------------------------------------------------------------------
// Функции отрисовки // Функции отрисовки
......
...@@ -1918,6 +1918,7 @@ CDocument.prototype = ...@@ -1918,6 +1918,7 @@ CDocument.prototype =
if ( true === this.NeedUpdateTarget && true === bFlag && false === this.Selection_Is_TableBorderMove() ) if ( true === this.NeedUpdateTarget && true === bFlag && false === this.Selection_Is_TableBorderMove() )
{ {
this.Document_UpdateInterfaceState();
this.Document_UpdateRulersState(); this.Document_UpdateRulersState();
this.RecalculateCurPos(); this.RecalculateCurPos();
this.NeedUpdateTarget = false; this.NeedUpdateTarget = false;
...@@ -12551,7 +12552,7 @@ CDocument.prototype = ...@@ -12551,7 +12552,7 @@ CDocument.prototype =
Show_Comment : function(Id) Show_Comment : function(Id)
{ {
var Comment = this.Comments.Get_ById( Id ); var Comment = this.Comments.Get_ById( Id );
if ( null != Comment && null != Comment.m_oStartInfo.ParaId && null != Comment.m_oEndInfo.ParaId ) if ( null != Comment && null != Comment.StartId && null != Comment.EndId )
{ {
var Comment_PageNum = Comment.m_oStartInfo.PageNum; var Comment_PageNum = Comment.m_oStartInfo.PageNum;
var Comment_Y = Comment.m_oStartInfo.Y; var Comment_Y = Comment.m_oStartInfo.Y;
......
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