Commit 1f0dd344 authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

git-svn-id:...

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@51822 954022d7-b5bf-4e40-9824-e11837661b57
parent 346ccc61
......@@ -6957,8 +6957,14 @@ CDocument.prototype =
var nInDrawing = this.DrawingObjects.isPointInDrawingObjects( X, Y, this.CurPage, this );
var bFlowTable = (null === this.DrawingObjects.getTableByXY( X, Y, this.CurPage, this ) ? false : true);
// Сначала посмотрим, попалили мы в текстовый селект
if ( true === this.Selection_Check( X, Y, this.CurPage, true ) )
{
// Начинаем передвижение текста
//this.DrawingDocument.S
}
// Проверяем, не попали ли мы в колонтитул (если мы попадаем в Flow-объект, то попадание в колонтитул не проверяем)
if ( true != bFlowTable && nInDrawing < 0 && true === bCheckHdrFtr && MouseEvent.ClickCount >= 2 && ( Y <= PageMetrics.Y || Y > PageMetrics.YLimit ) )
else if ( true != bFlowTable && nInDrawing < 0 && true === bCheckHdrFtr && MouseEvent.ClickCount >= 2 && ( Y <= PageMetrics.Y || Y > PageMetrics.YLimit ) )
{
// Если был селект, тогда убираем его
if ( true === this.Selection.Use )
......@@ -7468,6 +7474,11 @@ CDocument.prototype =
this.Document_UpdateRulersState();
},
On_DragTextEnd : function(NearPos)
{
},
Document_SelectNumbering : function(NumPr)
{
this.Selection_Remove();
......
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