From 3e48488201f862c91f1269ebc4308daa9c90b48e Mon Sep 17 00:00:00 2001 From: geemili Date: Tue, 16 Jan 2024 01:24:29 -0700 Subject: [PATCH] feat: set minimum supported xdg_wm_base to v2 River (and wlroots compositors in general) only support v2 of xdg_wm_base. The most notable addition seems to be popups, which zig-wayland-wire is not using ATM. --- src/xdg.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xdg.zig b/src/xdg.zig index 001aa22..36ab603 100644 --- a/src/xdg.zig +++ b/src/xdg.zig @@ -1,6 +1,6 @@ pub const WmBase = struct { pub const INTERFACE = "xdg_wm_base"; - pub const VERSION = 4; + pub const VERSION = 2; pub const Request = union(Request.Tag) { destroy: void,