This commit is contained in:
Kovid Goyal 2021-04-19 19:58:02 +05:30
parent 4ba0fa00b4
commit 629a8ad055
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 4 additions and 0 deletions

View File

@ -13,6 +13,9 @@ To update |kitty|, :doc:`follow the instructions <binary>`.
- hints kitten: Fix sending hyperlinks to their default handler not working
(:pull:`3500`)
- Wayland: Fix regression in previous release causing window decorations to
be drawn even when compositor supports server side decorations (:iss:`3501`)
0.20.0 [2021-04-19]
----------------------

1
glfw/wl_window.c vendored
View File

@ -486,6 +486,7 @@ static void setXdgDecorations(_GLFWwindow* window)
{
if (_glfw.wl.decorationManager)
{
window->wl.decorations.serverSide = true;
window->wl.xdg.decoration =
zxdg_decoration_manager_v1_get_toplevel_decoration(
_glfw.wl.decorationManager, window->wl.xdg.toplevel);