Commit e9a2f4e7 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@57333 954022d7-b5bf-4e40-9824-e11837661b57
parent bfbb5ed1
...@@ -2039,6 +2039,7 @@ function DrawingObjects() { ...@@ -2039,6 +2039,7 @@ function DrawingObjects() {
*****************************************/ *****************************************/
// Undo/Redo // Undo/Redo
_this.drawingDocument.CheckTargetShow();
if ( (worksheet.model.index != api.wb.model.getActive()) && !printOptions ) if ( (worksheet.model.index != api.wb.model.getActive()) && !printOptions )
return; return;
......
...@@ -944,7 +944,7 @@ TextAddState.prototype = ...@@ -944,7 +944,7 @@ TextAddState.prototype =
this.drawingObjects.changeCurrentState(new NullState(this.drawingObjects)); this.drawingObjects.changeCurrentState(new NullState(this.drawingObjects));
this.drawingObjects.handleEventMode = HANDLE_EVENT_MODE_CURSOR; this.drawingObjects.handleEventMode = HANDLE_EVENT_MODE_CURSOR;
var cursor_type = this.drawingObjects.onMouseDown(e, x, y, pageIndex); var cursor_type = this.drawingObjects.onMouseDown(e, x, y, pageIndex);
if(cursor_type.hyperlink) if(cursor_type && cursor_type.hyperlink)
{ {
this.drawingObjects.drawingObjects.showDrawingObjects(true); this.drawingObjects.drawingObjects.showDrawingObjects(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