mirror of
https://github.com/brl/mutter.git
synced 2024-11-26 18:11:05 -05:00
* clutter/clutter-actor.c (clutter_actor_remove_clip)
(clutter_actor_set_clipu): Queue a redraw when the clip is changed.
This commit is contained in:
parent
7c8fdee369
commit
0d700d7abb
@ -1,3 +1,9 @@
|
||||
2008-07-25 Neil Roberts <neil@o-hand.com>
|
||||
|
||||
* clutter/clutter-actor.c (clutter_actor_remove_clip)
|
||||
(clutter_actor_set_clipu): Queue a redraw when the clip is
|
||||
changed.
|
||||
|
||||
2008-07-24 Neil Roberts <neil@o-hand.com>
|
||||
|
||||
* clutter/clutter-script.c: The example in the documentation
|
||||
|
@ -5424,6 +5424,8 @@ clutter_actor_set_clipu (ClutterActor *self,
|
||||
|
||||
priv->has_clip = TRUE;
|
||||
|
||||
clutter_actor_queue_redraw (self);
|
||||
|
||||
g_object_notify (G_OBJECT (self), "has-clip");
|
||||
g_object_notify (G_OBJECT (self), "clip");
|
||||
}
|
||||
@ -5469,6 +5471,8 @@ clutter_actor_remove_clip (ClutterActor *self)
|
||||
|
||||
self->priv->has_clip = FALSE;
|
||||
|
||||
clutter_actor_queue_redraw (self);
|
||||
|
||||
g_object_notify (G_OBJECT (self), "has-clip");
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user