From 1a0d507316c8231ac68c011155fde6bb1a89e622 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 4 Mar 2010 17:38:35 -0500 Subject: [PATCH] [ShellGenericContainer] When removing actors, remove them from skip_paint This fixes a regression introduced by the previous patch. --- src/shell-generic-container.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/shell-generic-container.c b/src/shell-generic-container.c index e7f874d83..ad34fee47 100644 --- a/src/shell-generic-container.c +++ b/src/shell-generic-container.c @@ -287,6 +287,8 @@ shell_generic_container_remove_actor (ClutterContainer *container, { ShellGenericContainerPrivate *priv = SHELL_GENERIC_CONTAINER (container)->priv; + g_hash_table_remove (priv->skip_paint, actor); + _st_container_remove_actor (container, actor, &priv->children); }