Fixed the TableSpaceAvailable logic (B2016-038) which made print think a table was taller than it actually was.
This commit is contained in:
parent
c72522730c
commit
ac49c296cd
@ -1367,9 +1367,9 @@ namespace Volian.Print.Library
|
|||||||
float retval = 0;
|
float retval = 0;
|
||||||
if(_ChildrenBelow!= null)
|
if(_ChildrenBelow!= null)
|
||||||
foreach (vlnParagraph pgh in _ChildrenBelow)
|
foreach (vlnParagraph pgh in _ChildrenBelow)
|
||||||
retval += pgh.TableSpaceAvailable;
|
retval = pgh.TableSpaceAvailable;
|
||||||
if (MyGrid != null)
|
if (MyGrid != null)
|
||||||
retval += MyGrid.SpaceAvailable;
|
retval = MyGrid.SpaceAvailable;
|
||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user