From e9df501afda94e3e80d4b7cf9ba5ddd30cef7592 Mon Sep 17 00:00:00 2001 From: bulia byak Date: Mon, 22 Oct 2007 06:21:39 +0000 Subject: make sure ctrl-alt-click adds node to the gradient that's actually clicked (bzr r3939) --- src/gradient-context.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/gradient-context.cpp') 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 { -- cgit v1.2.3