Customtkinter problem #2497
Unanswered
jonathan-muina19
asked this question in
Q&A
Replies: 1 comment
-
@jonathan-muina19 After making the UI, test it on different screens, if you face any DPI scale issue then try these methods: import ctypes
ctypes.windll.shcore.SetProcessDpiAwareness(0) or customtkinter.set_widget_scaling(1.0)
customtkinter.set_window_scaling(1.0)
customtkinter.deactivate_automatic_dpi_awareness() |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How can I ensure that the widgets, images and windows of my customtkinter python application can fit on all computers?
Beta Was this translation helpful? Give feedback.
All reactions