Commit 22b91ba1 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@66860 954022d7-b5bf-4e40-9824-e11837661b57
parent 9824653e
......@@ -569,7 +569,9 @@ CHistory.prototype =
return;
// Не объединяем точки истории, если на предыдущей точке произошло сохранение
if ( this.Points.length < 2 )
if (this.Points.length < 2
|| (true !== this.Is_UserSaveMode() && null !== this.SavedIndex && this.SavedIndex >= this.Points.length - 2)
|| (true === this.Is_UserSaveMode() && null !== this.UserSavedIndex && this.UserSavedIndex >= this.Points.length - 2))
return;
var Point1 = this.Points[this.Points.length - 2];
......
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