summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ab8b433)
raw | patch | inline | side by side (parent: ab8b433)
author | buliabyak <buliabyak@users.sourceforge.net> | |
Mon, 22 Oct 2007 06:21:39 +0000 (06:21 +0000) | ||
committer | buliabyak <buliabyak@users.sourceforge.net> | |
Mon, 22 Oct 2007 06:21:39 +0000 (06:21 +0000) |
src/gradient-context.cpp | patch | blob | history |
index 2176f3ea086e16c46f67b389465267b395a34012..8548113351449b07be052ac1c83b84d7df8af191 100644 (file)
--- 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 {