TomSchimansky / TomSchimansky/CustomTkinter
Button Not Appearing
Nobody has claimed this yet.
- 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
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- 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