A code example:
import customtkinter as ctk
app = ctk.CTk()
app.geometry("600x600")
bottomButtons = ctk.CTkFrame(app)
bottomButtons.pack(side="bottom",fill="x")
ctk.CTkButton(bottomButtons, text="Right").pack(side="right")
ctk.CTkButton(bottomButtons, text="Left").pack(side="left")
app.mainloop()
When I open the app it looks like this:
But when I maximize the windows it looks like this:
And it fixes himself after I hover over the button. How can I fix this? I have tried many things already. I recreated the code in the normal tkinter libray for python and it works normally.
A code example:
When I open the app it looks like this:
But when I maximize the windows it looks like this:
And it fixes himself after I hover over the button. How can I fix this? I have tried many things already. I recreated the code in the normal tkinter libray for python and it works normally.