Code

Gradient editor: don't show pre-snap indicator when hovering above the knot of a...
[inkscape.git] / src / gradient-drag.cpp
index 0b9068b37343d49855e31c961c2ee7bafe3b728d..246573e3f3fc0d05de413632b0f68b5c257404a6 100644 (file)
@@ -1662,6 +1662,22 @@ GrDrag::updateDraggers ()
     }
 }
 
+
+/**
+ * \brief Returns true if at least one of the draggers' knots has the mouse hovering above it
+ */
+
+bool
+GrDrag::mouseOver()
+{
+    for (GList const* i = this->draggers; i != NULL; i = i->next) {
+        GrDragger *d = (GrDragger *) i->data;
+        if (d->knot && (d->knot->flags & SP_KNOT_MOUSEOVER)) {
+            return true;
+        }
+    }
+    return false;
+}
 /**
 Regenerates the lines list from the current selection; is called on each move of a dragger, so that
 lines are always in sync with the actual gradient