summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarc Jeanmougin <marc@jeanmougin.fr>2015-12-10 10:22:55 +0000
committerMarc Jeanmougin <marcjeanmougin@free.fr>2015-12-10 10:22:55 +0000
commitd2edbb1ddc55f9d839892066a7015aca4029d4d7 (patch)
tree824c58b0abd59f6bdf5e3474bf2aa7e2993bf241 /src
parentRemove CtrlPoint and replace with SPKnot (diff)
downloadinkscape-d2edbb1ddc55f9d839892066a7015aca4029d4d7.tar.gz
inkscape-d2edbb1ddc55f9d839892066a7015aca4029d4d7.zip
hide/show handle with guide
(bzr r14524)
Diffstat (limited to 'src')
-rw-r--r--src/sp-guide.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sp-guide.cpp b/src/sp-guide.cpp
index 441c2e793..065acf586 100644
--- a/src/sp-guide.cpp
+++ b/src/sp-guide.cpp
@@ -288,6 +288,7 @@ void SPGuide::showSPGuide()
{
for(std::vector<SPGuideLine *>::const_iterator it = this->views.begin(); it != this->views.end(); ++it) {
sp_canvas_item_show(SP_CANVAS_ITEM(*it));
+ (*it)->origin->show();
}
}
@@ -310,6 +311,7 @@ void SPGuide::hideSPGuide()
{
for(std::vector<SPGuideLine *>::const_iterator it = this->views.begin(); it != this->views.end(); ++it) {
sp_canvas_item_hide(SP_CANVAS_ITEM(*it));
+ (*it)->origin->hide();
}
}