in reply to Tkx: return list of slaves

You need to repack ( pack forget, then pack)

Replies are listed 'Best First'.
Re^2: Tkx: return list of slaves
by v4169sgr (Sexton) on Sep 22, 2009 at 10:59 UTC

    Thanks for your reply, but I was wondering how to do this in Tkx:

    sub repack_kids { my @kids = $mw->packSlaves; foreach (@kids) { %packinfo = $_->packInfo(); $_->pack(-padx => 20 + $packinfo{"-padx"}, -pady => 20 + $packinfo{"-pady"}); } }