Commit 07824f25 authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander Trofimov
parent 1d3ae760
......@@ -357492,7 +357492,18 @@ CDrawingDocument.prototype =
this.Native["DD_NeedScrollToTargetFlag"](true);
this.LogicDocumentOnMouseUp(global_mouseEvent, pos.X, pos.Y, pos.Page);
if (this.SelectDrag == 1 || this.SelectDrag == 2)
{
var _oldShift = global_mouseEvent.ShiftKey;
global_mouseEvent.ShiftKey = true;
this.LogicDocumentOnMouseDown(global_mouseEvent, pos.X, pos.Y, pos.Page);
this.LogicDocumentOnMouseUp(global_mouseEvent, pos.X, pos.Y, pos.Page);
global_mouseEvent.ShiftKey = _oldShift;
}
else
{
this.LogicDocumentOnMouseUp(global_mouseEvent, pos.X, pos.Y, pos.Page);
}
this.Native["DD_NeedScrollToTargetFlag"](false);
this.Native.m_bIsMouseUpSend = false;
......@@ -357529,7 +357540,19 @@ CDrawingDocument.prototype =
return;
this.TableOutlineDr.bIsNoTable = true;
this.LogicDocument.OnMouseMove(global_mouseEvent, pos.X, pos.Y, pos.Page);
if (this.SelectDrag == 1 || this.SelectDrag == 2)
{
var _oldShift = global_mouseEvent.ShiftKey;
global_mouseEvent.ShiftKey = true;
this.LogicDocumentOnMouseDown(global_mouseEvent, pos.X, pos.Y, pos.Page);
this.LogicDocumentOnMouseUp(global_mouseEvent, pos.X, pos.Y, pos.Page);
global_mouseEvent.ShiftKey = _oldShift;
}
else
{
this.LogicDocument.OnMouseMove(global_mouseEvent, pos.X, pos.Y, pos.Page);
}
if (this.TableOutlineDr.bIsNoTable === 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