From d037c54260d4f55c7f7b5ca69faa2ebe10289ef8 Mon Sep 17 00:00:00 2001 From: Vaxry Date: Sun, 15 Jun 2025 12:21:09 +0200 Subject: [PATCH] protocols: support xdg-shell v7 there's nothing special we need to add for this rev --- src/managers/ProtocolManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/managers/ProtocolManager.cpp b/src/managers/ProtocolManager.cpp index f0268720..3427bf3e 100644 --- a/src/managers/ProtocolManager.cpp +++ b/src/managers/ProtocolManager.cpp @@ -172,7 +172,7 @@ CProtocolManager::CProtocolManager() { PROTO::tablet = makeUnique(&zwp_tablet_manager_v2_interface, 1, "TabletV2"); PROTO::layerShell = makeUnique(&zwlr_layer_shell_v1_interface, 5, "LayerShell"); PROTO::presentation = makeUnique(&wp_presentation_interface, 1, "Presentation"); - PROTO::xdgShell = makeUnique(&xdg_wm_base_interface, 6, "XDGShell"); + PROTO::xdgShell = makeUnique(&xdg_wm_base_interface, 7, "XDGShell"); PROTO::dataWlr = makeUnique(&zwlr_data_control_manager_v1_interface, 2, "DataDeviceWlr"); PROTO::primarySelection = makeUnique(&zwp_primary_selection_device_manager_v1_interface, 1, "PrimarySelection"); PROTO::xwaylandShell = makeUnique(&xwayland_shell_v1_interface, 1, "XWaylandShell");