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.
dev
LeRoyce Pearson 2024-01-16 01:24:29 -07:00
parent b46131a80a
commit 3e48488201
1 changed files with 1 additions and 1 deletions

View File

@ -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,