Commit 80fa50f5 authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Исправлен баг с проверкой орфографии в параграфах с одним словом (баг 21474).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@50848 954022d7-b5bf-4e40-9824-e11837661b57
parent 58db79f0
......@@ -891,6 +891,11 @@ Paragraph.prototype.Continue_CheckSpelling = function()
}
}
// Если у нас осталось одно слово в параграфе, состоящее из одной буквы, тогда надо перерисовать данный параграф,
// чтобы избавиться от подчеркивания.
if ( 1 === this.SpellChecker.Elements.length && 1 === this.SpellChecker.Elements[0].Word.length )
ParaForceRedraw = this;
this.SpellChecker.RecalcId = this.LogicDocument.RecalcId;
this.SpellChecker.ParaId = this.Get_Id();
this.SpellChecker.Check(ParaForceRedraw );
......
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