diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-04-15 16:12:12 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-04-16 14:06:33 +0200 |
commit | c71656f51a09e88ecae4f3423c96fee84778647d (patch) | |
tree | c4d1b0c322d3b36f164534b0e99b19b67ad3e946 /svx | |
parent | 357020de87b59b88efa10694d9e212e159ee7c16 (diff) |
[API CHANGE] remove some primitives rendering settings
Remove the following settings:
QuadraticFormControlRenderLimit
Quadratic3DRenderLimit
RenderSimpleTextDirect
RenderDecoratedTextDirect
SnapHorVerLinesToDiscrete
which have no way to be set from the user interface.
Change-Id: Ie96531425f5ba6021ade4f247b18b99092fd7e5f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92275
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/svdraw/svddrgv.cxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/svx/source/svdraw/svddrgv.cxx b/svx/source/svdraw/svddrgv.cxx index 7002f9447d0d..832ea61ca9de 100644 --- a/svx/source/svdraw/svddrgv.cxx +++ b/svx/source/svdraw/svddrgv.cxx @@ -63,7 +63,7 @@ void SdrDragView::ImpClearVars() mbCrookAtCenter=false; // init using default - mbSolidDragging = getOptionsDrawinglayer().IsSolidDragCreate(); + mbSolidDragging = true; } SdrDragView::SdrDragView( @@ -917,9 +917,8 @@ void SdrDragView::SetSolidDragging(bool bOn) bool SdrDragView::IsSolidDragging() const { - // allow each user to disable by having a local setting, but using AND for - // checking allowance - return mbSolidDragging && getOptionsDrawinglayer().IsSolidDragCreate(); + // allow each user to disable by having a local setting + return mbSolidDragging; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |