TomSchimansky / TomSchimansky/CustomTkinter

Button Not Appearing

Open
#2,364 1 comment 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

bug question
Dominant language
Python
Stars
13.6k
Forks
1.2k
PR merge metrics
No merged PRs in 30d

Description

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()`

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Start by reproducing the inline CustomTkinter example on SamonaOS through VS Code, using the reported CTkButton setup. Investigate why the button can be pressed but is not visible; done means the button appears while retaining its reported press behavior.

Written by the indexing model from the issue text.

Assessment

Tech stack
python
Domain
desktop
Issue type
Bug
Difficulty
3/5
Estimated time
1-2 days
Activity status
Stale
Clarity
Mostly clear
Newbie friendliness
35/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.