Code

Refactoring of 3D box tool, mainly to avoid unnecessary creation of perspectives.
[inkscape.git] / src / selection.cpp
index 4d92a18df77948f7de0620a8609566eb9e33075e..ed8a9d57b86034dfcaf4c36915bace17a5ff3671 100644 (file)
@@ -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) {