diff options
author | Ivan Timofeev <timofeev.i.s@gmail.com> | 2011-11-02 15:55:28 +0100 |
---|---|---|
committer | Jan Holesovsky <kendy@suse.cz> | 2011-11-02 15:58:38 +0100 |
commit | 2ab818f8e9822ff027ad6c90e7b6fb1f4c089f9f (patch) | |
tree | ea271356aa072a202fda7bb700a4d528df0af2d9 | |
parent | 555c89db131240641cb01c7c8caa239d1621df84 (diff) |
Fix i#89051: Move the point you've just inserted, not the previous one.
-rw-r--r-- | svx/source/svdraw/svdmrkv.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/svdraw/svdmrkv.cxx b/svx/source/svdraw/svdmrkv.cxx index becc523e27e1..9dd2e62444b5 100644 --- a/svx/source/svdraw/svdmrkv.cxx +++ b/svx/source/svdraw/svdmrkv.cxx @@ -802,12 +802,12 @@ void SdrMarkView::SetMarkHandles() // Drehpunkt/Spiegelachse AddDragModeHdl(eDragMode); - // add custom handles (used by other apps, e.g. AnchorPos) - AddCustomHdl(); - // sort handles aHdl.Sort(); + // add custom handles (used by other apps, e.g. AnchorPos) + AddCustomHdl(); + // #105722# try to restore focus handle index from remembered values if(bSaveOldFocus) { |