diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-07-24 17:50:23 +0100 |
---|---|---|
committer | Katarina Behrens <Katarina.Behrens@cib.de> | 2016-07-25 06:48:02 +0000 |
commit | 60ab08c6c5c4b5730c1cb54eca5558be214e8925 (patch) | |
tree | afc29dd5f25d95a5335810e536561b414ffa457c /sd | |
parent | 9920a0bf9d783978cd6f7b97f7528d8aa2571143 (diff) |
Resolves: tdf#101076 drag-create creates an unfilled shape...
after using the slide properties->background->all slides
This SetAttributes with nothing selected will end up setting the
default object properties. Here I think we are setting the bg color to
the master, and then unsetting the bg color of the slides to none
so the master color shows through.
So the additional SetAttributes call unsets the bg of the default
object style
Change-Id: I5cfd74eef5637b87d2a8778d4b8c8a0cbc0960db
Reviewed-on: https://gerrit.libreoffice.org/27487
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/func/fupage.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sd/source/ui/func/fupage.cxx b/sd/source/ui/func/fupage.cxx index d9c8ad9faebe..8d56182bb00f 100644 --- a/sd/source/ui/func/fupage.cxx +++ b/sd/source/ui/func/fupage.cxx @@ -152,7 +152,6 @@ void FuPage::DoExecute( SfxRequest& ) if( mpArgs ) { ApplyItemSet( mpArgs ); - mpView->SetAttributes( *mpArgs ); } } } |