mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-17 23:24:51 +00:00
st-box-layout: Don't report a paint volume when we have no allocation
This commit is contained in:
parent
5a42a91ee0
commit
aa6f352cb0
1 changed files with 4 additions and 0 deletions
|
|
@ -495,6 +495,10 @@ st_box_layout_get_paint_volume (ClutterActor *actor,
|
|||
ClutterActorBox content_box;
|
||||
ClutterVertex origin;
|
||||
|
||||
/* Setting the paint volume does not make sense when we don't have any allocation */
|
||||
if (!clutter_actor_has_allocation (actor))
|
||||
return FALSE;
|
||||
|
||||
/* When have an adjustment we are clipped to the content box, so base
|
||||
* our paint volume on that. */
|
||||
if (priv->hadjustment || priv->vadjustment)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue