summaryrefslogtreecommitdiffstats
path: root/src/selection.cpp
diff options
context:
space:
mode:
authorMaximilian Albert <maximilian.albert@gmail.com>2009-12-26 00:31:51 +0000
committerMaximilian Albert <maximilian.albert@gmail.com>2009-12-26 00:31:51 +0000
commitb0caf0cf11a3afdfbc9327641dde6ea7a8257fc5 (patch)
tree59ad390f9fcc86ccd7837124962f0e56cd0aa0da /src/selection.cpp
parentFix compile when lcms is disabled (someone please check that this fix is corr... (diff)
downloadinkscape-b0caf0cf11a3afdfbc9327641dde6ea7a8257fc5.tar.gz
inkscape-b0caf0cf11a3afdfbc9327641dde6ea7a8257fc5.zip
Refactoring of 3D box tool, mainly to avoid unnecessary creation of perspectives.
(bzr r8910)
Diffstat (limited to '')
-rw-r--r--src/selection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/selection.cpp b/src/selection.cpp
index 4d92a18df..ed8a9d57b 100644
--- a/src/selection.cpp
+++ b/src/selection.cpp
@@ -224,7 +224,7 @@ void Selection::remove_box_perspective(SPBox3D *box) {
Persp3D *persp = box3d_get_perspective(box);
std::map<Persp3D *, unsigned int>::iterator p = _persps.find(persp);
if (p == _persps.end()) {
- g_print ("Warning! Trying to remove unselected perspective from selection!\n");
+ //g_print ("Warning! Trying to remove unselected perspective from selection!\n");
return;
}
if ((*p).second > 1) {