static void
shell_slicer_paint (ClutterActor *self)
{
  st_widget_paint_background (ST_WIDGET (self));

  shell_slicer_paint_child (SHELL_SLICER (self));
}
Example #2
0
static void
shell_slicer_paint (ClutterActor *self)
{
  /* StWidget paints CSS elements */
  CLUTTER_ACTOR_CLASS (g_type_class_peek (st_widget_get_type ()))->paint (self);

  shell_slicer_paint_child (SHELL_SLICER (self));
}
static void
shell_slicer_pick (ClutterActor       *self,
                   const ClutterColor *pick_color)
{
  shell_slicer_paint_child (SHELL_SLICER (self));
}