diff options
author | Cédric Bosdonnat <cedricbosdo@openoffice.org> | 2010-11-22 10:53:22 +0100 |
---|---|---|
committer | Cédric Bosdonnat <cedricbosdo@openoffice.org> | 2010-11-22 10:54:55 +0100 |
commit | ddfb4e660c0f23b3c594b859a54694bb8acd8c96 (patch) | |
tree | 822741191754be2f05e33a1fe98718aaf3a0483d /svx | |
parent | f1d2af0d86548e0c916eeadc934d4d1131eaecc2 (diff) |
Fix for i#115681
Some missing condition before actually draggging the border.
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/dialog/svxruler.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/svx/source/dialog/svxruler.cxx b/svx/source/dialog/svxruler.cxx index 683fce71fea0..d6aaa70e7c70 100644 --- a/svx/source/dialog/svxruler.cxx +++ b/svx/source/dialog/svxruler.cxx @@ -2778,7 +2778,8 @@ void SvxRuler::EvalModifier() const RulerType eType = GetDragType(); nDragType = DRAG_OBJECT_SIZE_PROPORTIONAL; if( RULER_TYPE_TAB == eType || - ( ( RULER_TYPE_BORDER == eType || RULER_TYPE_MARGIN1 == eType ) && + ( ( RULER_TYPE_BORDER == eType || RULER_TYPE_MARGIN1 == eType || + RULER_TYPE_MARGIN2 == eType ) && pColumnItem ) ) PrepareProportional_Impl(eType); break; |