From d1a8b6602b2364c900b513b5b544062758b0ba95 Mon Sep 17 00:00:00 2001 From: Max-Wilhelm Bruker Date: Mon, 8 Mar 2010 16:36:00 +0100 Subject: [PATCH] arrow fix --- cockatrice/src/arrowitem.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cockatrice/src/arrowitem.cpp b/cockatrice/src/arrowitem.cpp index 2bb1e3f2..54af29bf 100644 --- a/cockatrice/src/arrowitem.cpp +++ b/cockatrice/src/arrowitem.cpp @@ -118,7 +118,8 @@ void ArrowDragItem::mouseMoveEvent(QGraphicsSceneMouseEvent *event) updatePath(endPos); } else { fullColor = true; - cursorItem->setBeingPointedAt(true); + if (cursorItem != startItem) + cursorItem->setBeingPointedAt(true); targetItem = cursorItem; updatePath(); }