Commit 669681e4 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

Bug #31851 - Не осуществляется переход по внутренним ссылкам, если сама ссылка...

Bug #31851 - Не осуществляется переход по внутренним ссылкам, если сама ссылка находится внутри таблицы

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@68846 954022d7-b5bf-4e40-9824-e11837661b57
parent 0d6e0e6f
......@@ -2883,7 +2883,13 @@ CPresentation.prototype =
{
e.ctrlKey = e.CtrlKey;
e.shiftKey = e.ShiftKey;
var nStartPage = this.CurPage;
this.Slides[this.CurPage].graphicObjects && this.Slides[this.CurPage].graphicObjects.onMouseUp(e, X, Y);
if(nStartPage !== this.CurPage)
{
this.DrawingDocument.CheckTargetShow();
this.Document_UpdateSelectionState();
}
if(e.Button === g_mouse_button_right && !this.noShowContextMenu)
{
var ContextData = new CContextMenuData();
......
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