On 10/02/13 01:32, Simon Feltman wrote:
This is what I have for gjs : vfunc_paint: function() { this.parent(); let children = this.get_children(); for (let i in children) { children[i].paint(); } }, vfunc_allocate: function(box, flags) { this.parent(box, flags); let children = this.get_children(); for (let i in children) { children[i].allocate_preferred_size(flags); } } |