TomSchimansky / CustomTkinter

A modern and customizable python UI-library based on Tkinter
MIT License
11.49k stars 1.08k forks source link

iconbitmap overridden #1106

Open cfivek opened 1 year ago

cfivek commented 1 year ago

After upgrading to 5.05 (from 5.01), I noticed my root.iconbitmap is being overridden with the customtkinter logo. It seems I can no longer use my own .ico?

Bug?

Akascape commented 1 year ago

Yes, this is an issue with the new version. Only the wm_iconbitmap method is implemented, that is why other methods are not working, @TomSchimansky please add the other methods.

emcek commented 1 year ago

I open duplicate: #1125

emcek commented 1 year ago

Looks like 5.1.0 fix this.

Rexlep commented 10 months ago

no i still have that problem

kinsey-n commented 10 months ago

I used both methods and it wont work image image

emcek commented 10 months ago

I used both methods and it wont work image image

Nothing to do with original issue. Problem is with backslashes which are interpreted as extra characters, \U in Users. Use extra \ like C:\\Users\\k... or raw string: r'C:\Users\k...'

LoSh-68 commented 6 months ago

I have this issue too, but for me its overwriting the icon of my CTkToplevel windows.