Commit 5dc9ffca authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Добавлена обработка активности пользователя.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@60722 954022d7-b5bf-4e40-9824-e11837661b57
parent aad5c543
......@@ -79,6 +79,9 @@ CHistory.prototype =
if ( true != this.Can_Undo() )
return null;
if (editor)
editor.setUserAlive();
// Запоминаем самое последнее состояние документа для Redo
if ( this.Index === this.Points.length - 1 )
this.LastState = this.Document.Get_SelectionState();
......@@ -107,6 +110,9 @@ CHistory.prototype =
// Проверяем можно ли сделать Redo
if ( true != this.Can_Redo() )
return null;
if (editor)
editor.setUserAlive();
this.Document.Selection_Remove();
......@@ -186,6 +192,9 @@ CHistory.prototype =
if ( this.Index < 0 )
return;
if (editor)
editor.setUserAlive();
// Заглушка на случай, если у нас во время создания одной точки в истории, после нескольких изменений идет
// пересчет, потом снова добавляются изменения и снова запускается пересчет и т.д.
if ( this.RecIndex >= this.Index )
......
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