diff options
author | Trent MacAlpine <tmacalp@gmail.com> | 2015-01-13 21:48:47 -0500 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-01-16 09:20:23 +0000 |
commit | c6a1a8e6f8d97d24b4063909ef22824875326e28 (patch) | |
tree | d47cf9e07ed4cb66e31d1fa3e064edd6421b9665 | |
parent | d3ce5b298e3f5cc58256ba80f5d3f361618c4820 (diff) |
fdo#88339 Fixed Draw/Impress constrained image movement
Change-Id: Ib45cb3167acfd4f409b05a0e1b8d37af36fd6725
Reviewed-on: https://gerrit.libreoffice.org/13900
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | sd/source/ui/func/fudraw.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/func/fudraw.cxx b/sd/source/ui/func/fudraw.cxx index e375341d18e8..a68fb1abbc0d 100644 --- a/sd/source/ui/func/fudraw.cxx +++ b/sd/source/ui/func/fudraw.cxx @@ -255,8 +255,8 @@ bool FuDraw::MouseMove(const MouseEvent& rMEvt) if (mpView->IsAction()) { - // #i33136# - if(bIsImageSelected || (bRestricted && doConstructOrthogonal())) + // #i33136# and fdo#88339 + if(bRestricted && (bIsImageSelected || doConstructOrthogonal())) { // Scale proportionally by default: // rectangle->quadrat, ellipse->circle, Images etc. |