mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-08-04 14:46:03 +00:00
Fix #3501
This commit is contained in:
parent
4ba0fa00b4
commit
629a8ad055
2 changed files with 4 additions and 0 deletions
|
|
@ -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
1
glfw/wl_window.c
vendored
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue