texture-cache: Use content size for returned images

Since commit deec0bf255, the texture cache is based on ClutterImage
rather than ClutterTexture. As ClutterImage (like all ClutterContent)
is only concerned with painting, it doesn't influence the size of the
actor it is added to at all, and the returned actor will now stay at
size 0x0 after the image has been loaded.

Set up the actor to follow the content's size instead, to get closer
to the previous behavior.

https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/402
This commit is contained in:
Florian Müllner 2019-02-09 19:16:15 +01:00 committed by Georges Basile Stavracas Neto
parent 33e05f5912
commit 81f0e7de9e

View File

@ -71,6 +71,7 @@ create_invisible_actor (void)
{
return g_object_new (CLUTTER_TYPE_ACTOR,
"opacity", 0,
"request-mode", CLUTTER_REQUEST_CONTENT_SIZE,
NULL);
}