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

Сделано, чтобы подсказка о залочившем параграф пользователе всплывала ровно...

Сделано, чтобы подсказка о залочившем параграф пользователе всплывала ровно тогда, когда мышка находится в пределах параграфа (как следствие, исправлен баг 19824).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49824 954022d7-b5bf-4e40-9824-e11837661b57
parent 2d4f2e67
......@@ -10219,9 +10219,10 @@ Paragraph.prototype =
else
this.DrawingDocument.SetCursorType( "default", MMData );
if ( true === this.Lock.Is_Locked() )
var PNum = Math.max( 0, Math.min( PageIndex - this.PageNum, this.Pages.length - 1 ) );
var Bounds = this.Pages[PNum].Bounds;
if ( true === this.Lock.Is_Locked() && X < Bounds.Right && X > Bounds.Left && Y > Bounds.Top && Y < Bounds.Bottom )
{
var PNum = Math.max( 0, Math.min( PageIndex - this.PageNum, this.Pages.length - 1 ) );
var _X = this.Pages[PNum].X;
var _Y = this.Pages[PNum].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