621
628
Clutter.ActorBox child_box = Clutter.ActorBox ();
623
633
//allocate the running indicator first
624
634
float width, height, n_width, n_height;
625
635
running_indicator.get_preferred_width (58, out n_width, out width);
626
636
running_indicator.get_preferred_height (58, out n_height, out height);
629
644
child_box.x2 = child_box.x1 + width;
630
645
child_box.y2 = child_box.y1 + height;
631
646
running_indicator.allocate (child_box, flags);