diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2020-04-15 20:55:05 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2020-04-16 09:55:04 +0200 |
commit | 86280100cb4d558e2c1a4f67aa6e3ce7fdfb87b1 (patch) | |
tree | fd35d9de1cf3252ff233507c6cfaf114dfb3f885 /sw | |
parent | 5d663bcb1dde4b8aeaa7b593a54099f7fad90c08 (diff) |
sw: handle DisableOffPagePositioning when replacing compat options
This was added in commit 8d62b79f168180c6992eb483ec864d473050635f
(tdf#112443 disable off-page content positioning, 2017-11-29), it's off
by default and on for DOCX files.
Change-Id: Ic42d652fd92931b98979defd5060bf6e8f7c47d2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92320
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/doc/DocumentSettingManager.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/doc/DocumentSettingManager.cxx b/sw/source/core/doc/DocumentSettingManager.cxx index 24616650c450..dcff4b1742dd 100644 --- a/sw/source/core/doc/DocumentSettingManager.cxx +++ b/sw/source/core/doc/DocumentSettingManager.cxx @@ -628,7 +628,7 @@ void sw::DocumentSettingManager::ReplaceCompatibilityOptions(const DocumentSetti // No mbPropLineSpacingShrinksFirstLine // No mbSubtractFlys // No mbLastBrowseMode - // No mbDisableOffPagePositioning + mbDisableOffPagePositioning = rSource.mbDisableOffPagePositioning; // No mbEmptyDbFieldHidesPara mbEmptyDbFieldHidesPara = rSource.mbEmptyDbFieldHidesPara; mbContinuousEndnotes = rSource.mbContinuousEndnotes; |