diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-12-10 20:15:27 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-12-11 12:26:43 +0100 |
commit | 2f13f0693de4c301898f304999225738334aadb0 (patch) | |
tree | a1c8c1784d3412b5181121f05d1f399d45c47f5e | |
parent | f714a2960eb49c50a1e90646b4a48a14d5013a2d (diff) |
tdf#129300 If it would create no change, don't force it
otherwise a bogus "change" from the parent style is shown in the organizer
this dates to...
commit 755ad6834625488c5d31d4bacc9370eae7ffd8f3
Date: Tue Oct 5 11:15:56 2010 -0400
Ported calc-distributed-cell-text-*.diff from ooo-build.
Change-Id: I49fc654a232d3c0f43f8add9a9f9fee34a6c5add
Reviewed-on: https://gerrit.libreoffice.org/84894
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | cui/source/tabpages/align.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cui/source/tabpages/align.cxx b/cui/source/tabpages/align.cxx index 7e68685beee2..77b325d9f81b 100644 --- a/cui/source/tabpages/align.cxx +++ b/cui/source/tabpages/align.cxx @@ -92,6 +92,11 @@ void lcl_SetJustifyMethodToItemSet(SfxItemSet& rSet, sal_uInt16 nWhichJM, const if (rLB.get_active() == nListPos) eJM = SvxCellJustifyMethod::Distribute; + // tdf#129300 If it would create no change, don't force it + const SvxJustifyMethodItem& rOldItem = static_cast<const SvxJustifyMethodItem&>(rSet.Get(nWhichJM)); + if (rOldItem.GetValue() == eJM) + return; + SvxJustifyMethodItem aItem(eJM, nWhichJM); rSet.Put(aItem); } |