Is there a pack equivalent of the grid_remove() method where a widget's original pack() settings are restored on a re-pack()?

Use case: When I show a packed widget that has been hidden via pack_forget(), I would like to have the widget re-packed with its original pack settings when I issue the widget.pack() show request.

link|improve this question

79% accept rate
feedback

1 Answer

up vote 0 down vote accepted

No, there is no equivalent. There is only pack_forget which doesn't remember where the widget was when you restore it. If I need this sort of feature I just use the grid geometry manager.

link|improve this answer
Thanks. – Malcolm Dec 9 '10 at 16:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.