Commit 765fa36e 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@56155 954022d7-b5bf-4e40-9824-e11837661b57
parent c6999d81
......@@ -5027,9 +5027,10 @@ Paragraph.prototype =
var Tab = ParaPr.Tabs.Get(Index);
var TabPos = Tab.Pos + PageStart.X;
if ( true === bCheckLeft && TabPos > PageStart.X + ParaPr.Ind.Left )
// Здесь 0.001 убавляется из-за замечания ниже
if ( true === bCheckLeft && TabPos > PageStart.X + ParaPr.Ind.Left - 0.001 )
{
TabsPos.push( new CParaTab(tab_Left, ParaPr.Ind.Left) );
TabsPos.push( new CParaTab(tab_Left, ParaPr.Ind.Left - 0.001) );
bCheckLeft = false;
}
......@@ -5037,8 +5038,9 @@ Paragraph.prototype =
TabsPos.push( Tab );
}
// Здесь 0.001 убавляется из-за замечания ниже
if ( true === bCheckLeft )
TabsPos.push( new CParaTab(tab_Left, ParaPr.Ind.Left) );
TabsPos.push( new CParaTab(tab_Left, ParaPr.Ind.Left - 0.001) );
TabsCount = TabsPos.length;
......
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