3
0
mirror of https://github.com/hyprwm/Hyprland.git synced 2026-05-12 16:13:13 +00:00

protocols: fix presentation time proto version (#11306)

This commit is contained in:
UjinT34
2025-08-02 14:40:28 +03:00
committed by GitHub
parent 314a0ea441
commit 310fc629b0

View File

@ -172,7 +172,7 @@ CProtocolManager::CProtocolManager() {
PROTO::focusGrab = makeUnique<CFocusGrabProtocol>(&hyprland_focus_grab_manager_v1_interface, 1, "FocusGrab");
PROTO::tablet = makeUnique<CTabletV2Protocol>(&zwp_tablet_manager_v2_interface, 1, "TabletV2");
PROTO::layerShell = makeUnique<CLayerShellProtocol>(&zwlr_layer_shell_v1_interface, 5, "LayerShell");
PROTO::presentation = makeUnique<CPresentationProtocol>(&wp_presentation_interface, 1, "Presentation");
PROTO::presentation = makeUnique<CPresentationProtocol>(&wp_presentation_interface, 2, "Presentation");
PROTO::xdgShell = makeUnique<CXDGShellProtocol>(&xdg_wm_base_interface, 7, "XDGShell");
PROTO::dataWlr = makeUnique<CDataDeviceWLRProtocol>(&zwlr_data_control_manager_v1_interface, 2, "DataDeviceWlr");
PROTO::primarySelection = makeUnique<CPrimarySelectionProtocol>(&zwp_primary_selection_device_manager_v1_interface, 1, "PrimarySelection");