From fb4fc5a5f1a861596cde3ab4c9f07956d1f8e8ed Mon Sep 17 00:00:00 2001 From: Julian Orth Date: Wed, 25 Feb 2026 14:36:14 +0100 Subject: [PATCH] xdg-decoration: implement version 2 --- docs/features.md | 2 +- src/ifs/zxdg_decoration_manager_v1.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/features.md b/docs/features.md index 618887fe..f6f7726d 100644 --- a/docs/features.md +++ b/docs/features.md @@ -211,7 +211,7 @@ Jay supports the following wayland protocols: | zwp_tablet_manager_v2 | 2 | | | zwp_text_input_manager_v3 | 1 | | | zwp_virtual_keyboard_manager_v1 | 1 | Yes | -| zxdg_decoration_manager_v1 | 1 | | +| zxdg_decoration_manager_v1 | 2 | | | zxdg_output_manager_v1 | 3 | | [^lsaccess]: Sandboxes can restrict access to this protocol. diff --git a/src/ifs/zxdg_decoration_manager_v1.rs b/src/ifs/zxdg_decoration_manager_v1.rs index ad62071d..e4377644 100644 --- a/src/ifs/zxdg_decoration_manager_v1.rs +++ b/src/ifs/zxdg_decoration_manager_v1.rs @@ -50,7 +50,7 @@ impl Global for ZxdgDecorationManagerV1Global { } fn version(&self) -> u32 { - 1 + 2 } }