Commit 97892db0 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

Bug 24176 - При открытии контекстного меню таблицы в автофигуре, сбрасывается выделение ячеек

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@56132 954022d7-b5bf-4e40-9824-e11837661b57
parent eb75d32a
......@@ -1347,13 +1347,9 @@ CGraphicObjects.prototype =
selectionCheck: function( X, Y, Page_Abs, NearPos )
{
var text_object;
if(this.selection.textSelection)
text_object = this.selection.textSelection;
else if(this.selection.groupSelection && this.selection.groupSelection.textSelection)
text_object = this.selection.groupSelection.textSelection;
var text_object = getTargetTextObject(this);
if(text_object)
text_object.selectionCheck( X, Y, Page_Abs, NearPos );
return text_object.selectionCheck( X, Y, Page_Abs, NearPos );
return false;
},
......
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