From 310fc629b09392e0d181c2969f2b90ab25222333 Mon Sep 17 00:00:00 2001 From: UjinT34 <41110182+UjinT34@users.noreply.github.com> Date: Sat, 2 Aug 2025 14:40:28 +0300 Subject: [PATCH] protocols: fix presentation time proto version (#11306) --- 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 ebd90a45..91691926 100644 --- a/src/managers/ProtocolManager.cpp +++ b/src/managers/ProtocolManager.cpp @@ -172,7 +172,7 @@ CProtocolManager::CProtocolManager() { PROTO::focusGrab = makeUnique(&hyprland_focus_grab_manager_v1_interface, 1, "FocusGrab"); 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::presentation = makeUnique(&wp_presentation_interface, 2, "Presentation"); 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");