From: buliabyak Date: Mon, 22 Oct 2007 06:21:39 +0000 (+0000) Subject: make sure ctrl-alt-click adds node to the gradient that's actually clicked X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=1ee5c0c90bca2f55b048ae50b96273090f5ca7f0;p=inkscape.git make sure ctrl-alt-click adds node to the gradient that's actually clicked --- diff --git a/src/gradient-context.cpp b/src/gradient-context.cpp index 2176f3ea0..854811335 100644 --- a/src/gradient-context.cpp +++ b/src/gradient-context.cpp @@ -598,11 +598,13 @@ sp_gradient_context_root_handler(SPEventContext *event_context, GdkEvent *event) if (drag->lines) { for (GSList *l = drag->lines; (l != NULL) && (!over_line); l = l->next) { line = (SPCtrlLine*) l->data; - over_line |= sp_gradient_context_is_over_line (rc, (SPItem*) line, NR::Point(event->motion.x, event->motion.y)); + over_line = sp_gradient_context_is_over_line (rc, (SPItem*) line, NR::Point(event->motion.x, event->motion.y)); + if (over_line) + break; } } - if (over_line) { - sp_gradient_context_add_stop_near_point(rc, SP_ITEM(selection->itemList()->data), rc->mousepoint_doc, 0); + if (over_line && line) { + sp_gradient_context_add_stop_near_point(rc, line->item, rc->mousepoint_doc, 0); ret = TRUE; } } else {