diff options
author | Christian Lippka <cl@openoffice.org> | 2009-10-28 16:04:53 +0000 |
---|---|---|
committer | Christian Lippka <cl@openoffice.org> | 2009-10-28 16:04:53 +0000 |
commit | 08c281df2535b9fbe2ba5c5658ba3e8b47e77af0 (patch) | |
tree | 5c0fa84605def501c1be8eac4d53ed4398fb1742 /sd/source | |
parent | 3838b0a0e8c89da328481dd6d417f5e4ebaeb953 (diff) |
#i106369# only hide placeholder on master page not all text shapes
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/core/sdpage.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/core/sdpage.cxx b/sd/source/core/sdpage.cxx index 7f80b5bd763a..9fbb3088efc5 100644 --- a/sd/source/core/sdpage.cxx +++ b/sd/source/core/sdpage.cxx @@ -2883,7 +2883,7 @@ bool SdPage::checkVisibility( } } } // check for placeholders on master - else if( pCheckPage->IsMasterPage() && ( pVisualizedPage != pCheckPage ) ) + else if( (eKind != PRESOBJ_NONE) && pCheckPage->IsMasterPage() && ( pVisualizedPage != pCheckPage ) ) { // presentation objects on master slide are always invisible if slide is shown. return false; |