summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2013-03-06 03:01:15 +0000
committerJabiertxo Arraiza Zenotz <jtx@jtx.marker.es>2013-03-06 03:01:15 +0000
commitcaaed5a4603d40a0043bdcb564e213ea9e7d0021 (patch)
tree9fc39b763c61423cc806506aca24514b3f6a79dd /src
parentmerge from trunk (diff)
downloadinkscape-caaed5a4603d40a0043bdcb564e213ea9e7d0021.tar.gz
inkscape-caaed5a4603d40a0043bdcb564e213ea9e7d0021.zip
Permanent show outline in BSpline mode
(bzr r11950.1.47)
Diffstat (limited to 'src')
-rw-r--r--src/ui/tool/path-manipulator.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ui/tool/path-manipulator.cpp b/src/ui/tool/path-manipulator.cpp
index 7c23ee153..0a100ecfb 100644
--- a/src/ui/tool/path-manipulator.cpp
+++ b/src/ui/tool/path-manipulator.cpp
@@ -895,6 +895,9 @@ void PathManipulator::showHandles(bool show)
/** Set the visibility of outline. */
void PathManipulator::showOutline(bool show)
{
+ //BSpline
+ if(isBSpline()) show = true;
+ //BSpline
if (show == _show_outline) return;
_show_outline = show;
_updateOutline();