Kaydet (Commit) 157d7440 authored tarafından Cédric Bosdonnat's avatar Cédric Bosdonnat Kaydeden (comit) Cédric Bosdonnat

n#779627: table empty cell para collapse fix with fly frames

Make sure that the collapsed empty cell paragraph is more important in
FormatEmpty than anything else (fly frames are the onle case.

Change-Id: Id88e3370e988b45eabe4b9b30628e5472e9db1fe
üst 49eaecd0
......@@ -330,7 +330,7 @@ sal_Bool SwTxtFrm::FormatEmpty()
SwTxtFly aTxtFly( this );
SwRect aRect;
sal_Bool bFirstFlyCheck = 0 != Prt().Height();
if ( bFirstFlyCheck &&
if ( !bCollapse && bFirstFlyCheck &&
aTxtFly.IsOn() && aTxtFly.IsAnyObj( aRect ) )
return sal_False;
else
......@@ -363,7 +363,7 @@ sal_Bool SwTxtFrm::FormatEmpty()
SetEmpty( sal_True );
SetCompletePaint();
}
if( !bFirstFlyCheck &&
if( !bCollapse && !bFirstFlyCheck &&
aTxtFly.IsOn() && aTxtFly.IsAnyObj( aRect ) )
return sal_False;
......
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