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

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49828 954022d7-b5bf-4e40-9824-e11837661b57
parent 5466a3bb
......@@ -1110,6 +1110,10 @@ CImageShape.prototype =
{
return ShapeToImageConverter(this, this.pageIndex).ImageUrl;
},
setBlipFill: function(blipFill)
{
this.blipFill = blipFill;
},
writeToBinaryForCopyPaste: function(w)
{
......
......@@ -2896,7 +2896,7 @@ function TextAddInGroup(drawingObjectsController, drawingObjects, group, textObj
this.onKeyDown = function(e)
{
return DefaultKeyDownHandle(drawingObjectsController, e);
};
this.onKeyPress = function(e)
......@@ -5551,11 +5551,18 @@ function DefaultKeyDownHandle(drawingObjectsController, e)
var drawing_bases = drawingObjectsController.drawingObjects.getDrawingObjects();
for(var i = 0; i < drawing_bases.length; ++i)
{
drawing_bases.graphicObject.select(drawingObjectsController);
drawing_bases[i].graphicObject.select(drawingObjectsController);
}
drawingObjectsController.drawingObjects.OnUpdateOverlay();
break;
}
case STATES_ID_TEXT_ADD:
case STATES_ID_TEXT_ADD_IN_GROUP:
{
state.textObject.txBody.content.Select_All();
state.drawingObjectsController.updateSelectionState();
break;
}
}
bRetValue = true;
......
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