in reply to Tk centering main window on screen.
A fix could be to a) set explicitely the window size to the minimum and b) to not allow pack propagation before the window is mapped. Something like this, to be inserted before the Popup call:
After the Popup, you could turn pack propagation on again.$popup2->GeometryRequest(162,190); $popup2->packPropagate(0);
|
|---|