Home > front end >  Tkinter auto-py-to-exe distorted widgets when running in laptop with no python installed. in
Tkinter auto-py-to-exe distorted widgets when running in laptop with no python installed. in

Time:12-21

I have made a python tkinter program and converted it to exe using auto-py-to-exe, it is not showing GUI properly on a laptop with no python installed.I have used (.place) to set proper alignment of widgets but it is showing distorted on a different laptop with no python installed. What could be the solution for this??? Can anybody help.

CodePudding user response:

The best solution is to stop using place. pack and grid make for much more responsive UIs. With place it's up to you to account for different resolutions, different window sizes, and different fonts.

  • Related