[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.0' - svx/source
Henry Castro (via logerrit)
logerrit at kemper.freedesktop.org
Thu Mar 28 13:44:34 UTC 2019
svx/source/svdraw/svdedxv.cxx | 4 ++++
1 file changed, 4 insertions(+)
New commits:
commit 465caa7f9dd9fb04c7f777193e0e4e7a9fe4ce41
Author: Henry Castro <hcastro at collabora.com>
AuthorDate: Fri Mar 22 11:56:20 2019 -0400
Commit: Andras Timar <andras.timar at collabora.com>
CommitDate: Thu Mar 28 14:44:08 2019 +0100
tdf#124167: Changing text properties doesn't make presentation...
modified right away
when the attributes of edit engine has changed also broadcast the
changes
Change-Id: I28c67a4167e0b5653b6e9b645069830aa5575412
Reviewed-on: https://gerrit.libreoffice.org/69564
Tested-by: Jenkins
Reviewed-by: Henry Castro <hcastro at collabora.com>
Reviewed-on: https://gerrit.libreoffice.org/69680
Reviewed-by: Aron Budea <aron.budea at collabora.com>
Tested-by: Aron Budea <aron.budea at collabora.com>
Reviewed-by: Andras Timar <andras.timar at collabora.com>
diff --git a/svx/source/svdraw/svdedxv.cxx b/svx/source/svdraw/svdedxv.cxx
index 72938cf77f26..0e018a5fe08b 100644
--- a/svx/source/svdraw/svdedxv.cxx
+++ b/svx/source/svdraw/svdedxv.cxx
@@ -2179,6 +2179,10 @@ bool SdrObjEditView::SetAttributes(const SfxItemSet& rSet, bool bReplaceAll)
}
pTextEditOutlinerView->SetAttribs(rSet);
+ Outliner* pTEOutliner = pTextEditOutlinerView->GetOutliner();
+ if (mpModel && pTEOutliner && pTEOutliner->IsModified())
+ mpModel->SetChanged();
+
#ifdef DBG_UTIL
if (mpItemBrowser!=nullptr)
mpItemBrowser->SetDirty();
More information about the Libreoffice-commits
mailing list