From e9e0ae8b58d42e6217a3d36df4a6a9546f05f55d Mon Sep 17 00:00:00 2001 From: cilix42 Date: Fri, 11 Jan 2008 13:47:09 +0000 Subject: [PATCH] Retain the 3D box attribute when doing a color tweak only (so that the box can be further edited in 3D box context) --- src/tweak-context.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/tweak-context.cpp b/src/tweak-context.cpp index 09e13f1fc..736ebf2eb 100644 --- a/src/tweak-context.cpp +++ b/src/tweak-context.cpp @@ -337,6 +337,12 @@ sp_tweak_dilate_recursive (Inkscape::Selection *selection, SPItem *item, NR::Poi { bool did = false; + if (SP_IS_BOX3D(item)) { + // convert 3D boxes to ordinary groups before tweaking their shapes + item = SP_ITEM(box3d_convert_to_group(SP_BOX3D(item))); + selection->add(item); + } + if (SP_IS_GROUP(item)) { for (SPObject *child = sp_object_first_child(SP_OBJECT(item)) ; child != NULL; child = SP_OBJECT_NEXT(child) ) { if (SP_IS_ITEM(child)) { @@ -844,12 +850,6 @@ sp_tweak_dilate (SPTweakContext *tc, NR::Point event_p, NR::Point p, NR::Point v SPItem *item = (SPItem *) items->data; - if (SP_IS_BOX3D(item)) { - // convert 3D boxes to ordinary groups before tweaking their shapes - item = SP_ITEM(box3d_convert_to_group(SP_BOX3D(item))); - selection->add(item); - } - if (tc->mode == TWEAK_MODE_COLORPAINT || tc->mode == TWEAK_MODE_COLORJITTER) { if (do_fill || do_stroke || do_opacity) { if (sp_tweak_color_recursive (tc->mode, item, item_at_point, -- 2.30.2