in reply to Re: Tk grid in a Frame => freeze
in thread Tk grid in a Frame => freeze

hi Anonymous,
thanks for Your example.
In the mean time I found another atomic change to make my original code run without freeze:
removing the frames label:
... my $fr = $mw->Frame; ...

Using pack instead of grid the labelled frame works as expected. Is there any (documented) relationship between a frames label attribute and the used layout manager ?

Replies are listed 'Best First'.
Re^3: Tk grid in a Frame => freeze
by lamprecht (Friar) on Jul 01, 2009 at 14:46 UTC
    Hi,

    I don't know if it is documented. The Frames 'Label' gets packed itself and you can not use two managers for the same Widget.

    Christoph