Banshee.Widgets.HoverImageButton.OnEnterNotifyEvent C# (CSharp) Method

OnEnterNotifyEvent() protected method

protected OnEnterNotifyEvent ( Gdk evnt ) : bool
evnt Gdk
return bool
        protected override bool OnEnterNotifyEvent(Gdk.EventCrossing evnt)
        {
            image.GdkWindow.Cursor = hand_cursor;
            is_hovering = true;
            UpdateImage();
            return base.OnEnterNotifyEvent(evnt);
        }