Commit 37e1b77c authored by Dmitry.Vikulov's avatar Dmitry.Vikulov Committed by Alexander.Trofimov

Fixes: #16918, #19819, #18457

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49362 954022d7-b5bf-4e40-9824-e11837661b57
parent 367c39b1
......@@ -1480,6 +1480,7 @@ asc_CCellCommentator.prototype = {
break;
}
}
_this.worksheet.draw();
}
_this.drawCommentCells();
_this.worksheet.model.workbook.handlers.trigger("asc_onRemoveComment", id);
......
......@@ -951,6 +951,16 @@
/** @param event {jQuery.Event} */
_onWindowMouseUp: function (event) {
// Shapes
var coord = this._getCoordinates(event);
if ( this.isGraphicObjectMode ) {
this.handlers.trigger("graphicObjectMouseUp", event, coord.x, coord.y);
this._changeSelectionDone(event);
this.isGraphicObjectMode = false;
return true;
}
if (this.isSelectMode) {
this.isSelectMode = false;
this._changeSelectionDone(event);
......
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