Commit 84423d6f authored by Ilya Kirillov's avatar Ilya Kirillov

Added callback on change selection.

parent 4af17cb6
...@@ -7104,10 +7104,6 @@ CDocument.prototype.OnMouseUp = function(e, X, Y, PageIndex) ...@@ -7104,10 +7104,6 @@ CDocument.prototype.OnMouseUp = function(e, X, Y, PageIndex)
editor.sync_MarkerFormatCallback(true); editor.sync_MarkerFormatCallback(true);
} }
} }
else
{
}
} }
this.private_UpdateCursorXY(true, true); this.private_UpdateCursorXY(true, true);
...@@ -9786,6 +9782,9 @@ CDocument.prototype.private_UpdateCursorXY = function(bUpdateX, bUpdateY) ...@@ -9786,6 +9782,9 @@ CDocument.prototype.private_UpdateCursorXY = function(bUpdateX, bUpdateY)
if (null !== CurPara) if (null !== CurPara)
CurPara.CurPos.RealY = RealY; CurPara.CurPos.RealY = RealY;
} }
if (true === this.Selection.Use && true !== this.Selection.Start)
this.private_OnSelectionEnd();
}; };
CDocument.prototype.private_MoveCursorDown = function(StartX, StartY, AddToSelect) CDocument.prototype.private_MoveCursorDown = function(StartX, StartY, AddToSelect)
{ {
...@@ -10990,6 +10989,10 @@ CDocument.prototype.GetColumnSize = function() ...@@ -10990,6 +10989,10 @@ CDocument.prototype.GetColumnSize = function()
{ {
return this.Controller.GetColumnSize(); return this.Controller.GetColumnSize();
}; };
CDocument.prototype.private_OnSelectionEnd = function()
{
this.Api.asc_fireCallback("asc_onSelectionEnd");
};
//---------------------------------------------------------------------------------------------------------------------- //----------------------------------------------------------------------------------------------------------------------
// Settings // Settings
//---------------------------------------------------------------------------------------------------------------------- //----------------------------------------------------------------------------------------------------------------------
......
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