int i = 0;
while (i < idxhw) {
if (GraphicTree [i].MouseIsIn (e.Position)) {
- HoverWidget.onMouseLeave (this, e);
+ HoverWidget.onMouseLeave (HoverWidget, e);
GraphicTree [i].checkHoverWidget (e);
return true;
}
HoverWidget.checkHoverWidget (e);
return true;
} else {
- HoverWidget.onMouseLeave (this, e);
+ HoverWidget.onMouseLeave (HoverWidget, e);
//seek upward from last focused graph obj's
while (HoverWidget.Parent as GraphicObject != null) {
HoverWidget = HoverWidget.Parent as GraphicObject;
HoverWidget.checkHoverWidget (e);
return true;
} else
- HoverWidget.onMouseLeave (this, e);
+ HoverWidget.onMouseLeave (HoverWidget, e);
}
}
}