From 1251d7d7511d8a70f604f27b14237878f4a97d5f Mon Sep 17 00:00:00 2001 From: Jabiertxof Date: Mon, 6 Mar 2017 21:57:58 +0100 Subject: Fixes bug 1663952 Title: Selection tool: transformation handles vanish temporarily When happends: When selecting a object and moving it in a distance less than dragtolerance value, the handles of the item disapear. How fix: Internal code deprecate transforms if the transform is empty, so if the transform is empty I force show handles Fixed bugs: - https://launchpad.net/bugs/1663952 (bzr r15569) --- src/seltrans.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/seltrans.cpp') diff --git a/src/seltrans.cpp b/src/seltrans.cpp index 7a2a3777f..10b5b2837 100644 --- a/src/seltrans.cpp +++ b/src/seltrans.cpp @@ -480,6 +480,8 @@ void Inkscape::SelTrans::ungrab() DocumentUndo::done(_desktop->getDocument(), SP_VERB_CONTEXT_SELECT, _("Skew")); } + } else { + _updateHandles(); } } else { -- cgit v1.2.3