[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.3' - svx/source
Henry Castro (via logerrit)
logerrit at kemper.freedesktop.org
Thu Mar 28 10:02:45 UTC 2019
svx/source/svdraw/svdedxv.cxx | 4 ++++
1 file changed, 4 insertions(+)
New commits:
commit 2e559e129b751c14956abdaaa1a6b69a4006e67b
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 11:02:21 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/69875
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 d35b11e1b0f5..8df5d748c635 100644
--- a/svx/source/svdraw/svdedxv.cxx
+++ b/svx/source/svdraw/svdedxv.cxx
@@ -1835,6 +1835,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