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
parent
b46131a80a
commit
3e48488201
|
@ -1,6 +1,6 @@
|
||||||
pub const WmBase = struct {
|
pub const WmBase = struct {
|
||||||
pub const INTERFACE = "xdg_wm_base";
|
pub const INTERFACE = "xdg_wm_base";
|
||||||
pub const VERSION = 4;
|
pub const VERSION = 2;
|
||||||
|
|
||||||
pub const Request = union(Request.Tag) {
|
pub const Request = union(Request.Tag) {
|
||||||
destroy: void,
|
destroy: void,
|
||||||
|
|
Loading…
Reference in New Issue