I have a Tkinter app that uses Custom Tkinter. I have it sized nicely on my main monitor.
When I drag the window over to my laptop monitor it glitches out for a second while all the widgets resize. This results in the window now being too big for the laptop monitor (As it is much smaller).
While the window is half way between, the half on the laptop monitor is the correct size. Its only when it fully moves over that it resizes. It looks very janky as the window freezes for a second and each widget seems to glitch about before becoming larger.
Is there anyway to stop the window from doing this?
I Have tried disabling resizing of the window with resizable(0, 0), but that does not work.
I am wanting the window to move over and not resize, so it appears smaller on the smaller monitor.