diff options
author | Trent MacAlpine <tmacalp@gmail.com> | 2015-01-13 21:48:47 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2015-01-18 04:29:54 +0000 |
commit | 4ce891c59a9ab47cfde5fedb89b7d4b19002fae8 (patch) | |
tree | 308bc2813aa9b98f4e5eeaba87d6041c957a508c | |
parent | 2495314b93b91a966dfce4ace558c7b9e21841fe (diff) |
fdo#88339 Fixed Draw/Impress constrained image movement
fixed on master by c6a1a8e6f8d97d24b4063909ef22824875326e28
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>
Reviewed-on: https://gerrit.libreoffice.org/13978
Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.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 e5e327afeca9..32c54a3b0be7 100644 --- a/sd/source/ui/func/fudraw.cxx +++ b/sd/source/ui/func/fudraw.cxx @@ -254,8 +254,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. |