[ShellGenericContainer] When removing actors, remove them from skip_paint

This fixes a regression introduced by the previous patch.
This commit is contained in:
Colin Walters 2010-03-04 17:38:35 -05:00
parent b5853fe7e5
commit 1a0d507316

View File

@ -287,6 +287,8 @@ shell_generic_container_remove_actor (ClutterContainer *container,
{ {
ShellGenericContainerPrivate *priv = SHELL_GENERIC_CONTAINER (container)->priv; ShellGenericContainerPrivate *priv = SHELL_GENERIC_CONTAINER (container)->priv;
g_hash_table_remove (priv->skip_paint, actor);
_st_container_remove_actor (container, actor, &priv->children); _st_container_remove_actor (container, actor, &priv->children);
} }