Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Button Not Appearing #2364

Open
Carbajelly opened this issue Apr 9, 2024 · 1 comment
Open

Button Not Appearing #2364

Carbajelly opened this issue Apr 9, 2024 · 1 comment

Comments

@Carbajelly
Copy link

While attempting a simple button in customtkinter, a button does not appear but can be detected when it is pressed. Everything is up to date. Running via vscode on SamonaOS

`import customtkinter

app = customtkinter.CTk()
app.title('testing')

app.geometry("600x600")

def button_event():
print('button pressed')

button = customtkinter.CTkButton(master=app, text='CTkButton', command=button_event)
button.pack(side="top")

app.mainloop()`

@Akascape
Copy link

Akascape commented Apr 9, 2024

@Carbajelly Can be the issue mentioned here: #1690

Solution is to update python version,

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants