diff options
author | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2014-03-15 16:25:41 +0100 |
---|---|---|
committer | Björn Michaelsen <bjoern.michaelsen@canonical.com> | 2014-03-17 10:01:32 +0000 |
commit | 72a4987434368bfb0b15f5ebb70a52108d349d5f (patch) | |
tree | f5767ba202a9b89487b79aa66f055d727549f56b | |
parent | 5dc13b2d68eb30417f706935016d8bf7182b4aaa (diff) |
fdo#47355: partially revert c5a8a2c3cbcee0175127a0662e3d820ea4deea22
- that commit claimed to fix i#84870
- however that example document _still_ loops for me on current master
even with the change
- this caused the fdo#47355 regression in addition
- thus reverting to heal fdo#47355, expecting i#84870 unchanged as broken
before and in need of a proper fix
Change-Id: I067a8ef222ee2af6cd97579451c40ddba53ca294
Reviewed-on: https://gerrit.libreoffice.org/8606
Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
Tested-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
-rw-r--r-- | sw/source/core/text/frmform.cxx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/sw/source/core/text/frmform.cxx b/sw/source/core/text/frmform.cxx index e8908370a779..cbabc001bfd8 100644 --- a/sw/source/core/text/frmform.cxx +++ b/sw/source/core/text/frmform.cxx @@ -1099,14 +1099,6 @@ void SwTxtFrm::FormatAdjust( SwTxtFormatter &rLine, const SwTwips nDocPrtTop = Frm().Top() + Prt().Top(); const SwTwips nOldHeight = Prt().SSize().Height(); SwTwips nChg = rLine.CalcBottomLine() - nDocPrtTop - nOldHeight; - // --> OD #i84870# - no shrink of text frame, if it only contains one - // as-character anchored object. - if ( nChg < 0 && - bOnlyContainsAsCharAnchoredObj ) - { - nChg = 0; - } - // <-- // Vertical Formatting: // The (rotated) repaint rectangle's x coordinate referes to the frame. |