diff options
| author | Jabiertxof <jtx@jtx> | 2017-03-06 20:57:58 +0000 |
|---|---|---|
| committer | Jabiertxof <jtx@jtx> | 2017-03-06 20:57:58 +0000 |
| commit | 1251d7d7511d8a70f604f27b14237878f4a97d5f (patch) | |
| tree | 153e87a6049a43be94c92de1ce10f4fd51815182 /src/seltrans.cpp | |
| parent | EMF/WFM export: Fix crash when selecting "Convert gradients to colored polygo... (diff) | |
| download | inkscape-1251d7d7511d8a70f604f27b14237878f4a97d5f.tar.gz inkscape-1251d7d7511d8a70f604f27b14237878f4a97d5f.zip | |
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)
Diffstat (limited to '')
| -rw-r--r-- | src/seltrans.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
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 { |
