Commit 54ad28fc authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Исправлен баг с обсчетом границ селекта, когда в селект попадает flow-объект (баг 28805)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@61514 954022d7-b5bf-4e40-9824-e11837661b57
parent 19ea8cb2
......@@ -4923,8 +4923,11 @@ ParaRun.prototype.Selection_DrawRange = function(_CurLine, _CurRange, SelectionD
if ( true === DrawSelection )
{
if (true === SelectionDraw.Draw && para_Drawing === ItemType && true !== Item.Is_Inline())
Item.Draw_Selection();
if (para_Drawing === ItemType && true !== Item.Is_Inline())
{
if (true === SelectionDraw.Draw)
Item.Draw_Selection();
}
else
SelectionDraw.W += Item.Get_WidthVisible();
}
......
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