GNOME Bugzilla – Bug 626512
[St] Remove _st_actor_contains()
Last modified: 2010-08-10 13:09:59 UTC
See patch.
Created attachment 167487 [details] [review] [St] Remove _st_actor_contains() The function has been upstreamed as clutter_actor_contains() - with the switch to clutter-1.4 it is now available to the Shell, so it is no longer necessary to keep a copy in-tree.
Comment on attachment 167487 [details] [review] [St] Remove _st_actor_contains() >- st_widget_set_hover (widget, _st_actor_contains (CLUTTER_ACTOR (widget), pointer_actor)); >+ if (pointer_actor) >+ st_widget_set_hover (widget, clutter_actor_contains (CLUTTER_ACTOR (widget), pointer_actor)); if pointer_actor is NULL, you need to call st_widget_set_hover(widget, FALSE). otherwise good to commit
Attachment 167487 [details] pushed as 766b5b8 - [St] Remove _st_actor_contains()