mirror of
https://github.com/kovidgoyal/kitty
synced 2026-06-06 09:15:57 +02:00
There were two issues. 1) Setting window background color to a non-zero opacity causes darkening (essentially there were two layers of blending) 2) The titlebar background view could end up in the wrong position because it was a child of the content view rather than its super view Fix both issues setting the window background to clear color and moving the background view into the super view while making sure it is positioned correctly using explicit constraints. Phew.