marticliment / win32mica

Win32mica: a simple module to add the Mica effect on legacy python windows.
https://pypi.org/project/win32mica
MIT License
95 stars 5 forks source link

Title bar label background colour #8

Closed Cowski0 closed 2 years ago

Cowski0 commented 2 years ago

is there a way to stop the background color on the label of the window, i kinda resorted to just leaving the title bar empty because it was annoying.

sumeshir26 commented 2 years ago

Hey, this is a windows bug and is alreaday fixed, it will release soon

marticliment commented 2 years ago

True, this will be fixed on Windows 11 22h2, coming this september

marticliment commented 2 years ago

@Cowski0, if you want to set an empty titlebar, you will need to use some kind of empty character instead of a empty "" string, such as "\u200b", because otherwise the title will default to python

sumeshir26 commented 2 years ago

On Tkinter, even "" works

marticliment commented 2 years ago

Ah, in my case it was with Qt

Cowski0 commented 2 years ago

Alright, thanks