mirror of
https://github.com/brl/mutter.git
synced 2024-11-26 10:00:45 -05:00
actor: Queue a relayout when adding/removing constraints
Constraints change the way an actor is allocated; this warrants a relayout.
This commit is contained in:
parent
91a9a355c3
commit
3b72fdb20c
@ -11068,6 +11068,7 @@ clutter_actor_add_constraint (ClutterActor *self,
|
|||||||
|
|
||||||
_clutter_meta_group_add_meta (priv->constraints,
|
_clutter_meta_group_add_meta (priv->constraints,
|
||||||
CLUTTER_ACTOR_META (constraint));
|
CLUTTER_ACTOR_META (constraint));
|
||||||
|
clutter_actor_queue_relayout (self);
|
||||||
|
|
||||||
_clutter_notify_by_pspec (G_OBJECT (self), obj_props[PROP_CONSTRAINTS]);
|
_clutter_notify_by_pspec (G_OBJECT (self), obj_props[PROP_CONSTRAINTS]);
|
||||||
}
|
}
|
||||||
@ -11130,6 +11131,7 @@ clutter_actor_remove_constraint (ClutterActor *self,
|
|||||||
|
|
||||||
_clutter_meta_group_remove_meta (priv->constraints,
|
_clutter_meta_group_remove_meta (priv->constraints,
|
||||||
CLUTTER_ACTOR_META (constraint));
|
CLUTTER_ACTOR_META (constraint));
|
||||||
|
clutter_actor_queue_relayout (self);
|
||||||
|
|
||||||
_clutter_notify_by_pspec (G_OBJECT (self), obj_props[PROP_CONSTRAINTS]);
|
_clutter_notify_by_pspec (G_OBJECT (self), obj_props[PROP_CONSTRAINTS]);
|
||||||
}
|
}
|
||||||
@ -11164,6 +11166,7 @@ clutter_actor_remove_constraint_by_name (ClutterActor *self,
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
_clutter_meta_group_remove_meta (priv->constraints, meta);
|
_clutter_meta_group_remove_meta (priv->constraints, meta);
|
||||||
|
clutter_actor_queue_relayout (self);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user